Interface CfnFeatureGroup.OnlineStoreConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFeatureGroup.OnlineStoreConfigProperty.Jsii$Proxy
Enclosing class:
CfnFeatureGroup

@Stability(Stable) public static interface CfnFeatureGroup.OnlineStoreConfigProperty extends software.amazon.jsii.JsiiSerializable
Use this to specify the AWS Key Management Service (KMS) Key ID, or KMSKeyId , for at rest data encryption.

You can turn OnlineStore on or off by specifying the EnableOnlineStore flag at General Assembly.

The default value is False .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.sagemaker.*;
 OnlineStoreConfigProperty onlineStoreConfigProperty = OnlineStoreConfigProperty.builder()
         .enableOnlineStore(false)
         .securityConfig(OnlineStoreSecurityConfigProperty.builder()
                 .kmsKeyId("kmsKeyId")
                 .build())
         .storageType("storageType")
         .ttlDuration(TtlDurationProperty.builder()
                 .unit("unit")
                 .value(123)
                 .build())
         .build();
 

See Also: