public static interface CfnFeatureGroup.OnlineStoreConfigProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnFeatureGroup.OnlineStoreConfigProperty.Builder
A builder for
CfnFeatureGroup.OnlineStoreConfigProperty |
static class |
CfnFeatureGroup.OnlineStoreConfigProperty.Jsii$Proxy
An implementation for
CfnFeatureGroup.OnlineStoreConfigProperty |
Modifier and Type | Method and Description |
---|---|
static CfnFeatureGroup.OnlineStoreConfigProperty.Builder |
builder() |
default java.lang.Object |
getEnableOnlineStore()
Turn `OnlineStore` off by specifying `False` for the `EnableOnlineStore` flag.
|
default java.lang.Object |
getSecurityConfig()
Use to specify KMS Key ID ( `KMSKeyId` ) for at-rest encryption of your `OnlineStore` .
|
default java.lang.Object getEnableOnlineStore()
Turn OnlineStore
on by specifying True
for the EnableOnlineStore
flag.
The default value is False
.
default java.lang.Object getSecurityConfig()
static CfnFeatureGroup.OnlineStoreConfigProperty.Builder builder()