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())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFeatureGroup.OnlineStoreConfigPropertystatic final classAn implementation forCfnFeatureGroup.OnlineStoreConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnableOnlineStore
TurnOnlineStoreoff by specifyingFalsefor theEnableOnlineStoreflag.Turn
OnlineStoreon by specifyingTruefor theEnableOnlineStoreflag.The default value is
False. -
getSecurityConfig
Use to specify KMS Key ID (KMSKeyId) for at-rest encryption of yourOnlineStore. -
builder
-