aws-cdk-lib.aws_sagemaker.CfnFeatureGroup.OnlineStoreConfigProperty

interface OnlineStoreConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnFeatureGroup.OnlineStoreConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnFeatureGroup_OnlineStoreConfigProperty
Javasoftware.amazon.awscdk.services.sagemaker.CfnFeatureGroup.OnlineStoreConfigProperty
Pythonaws_cdk.aws_sagemaker.CfnFeatureGroup.OnlineStoreConfigProperty
TypeScript aws-cdk-lib » aws_sagemaker » CfnFeatureGroup » OnlineStoreConfigProperty

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 { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const onlineStoreConfigProperty: sagemaker.CfnFeatureGroup.OnlineStoreConfigProperty = {
  enableOnlineStore: false,
  securityConfig: {
    kmsKeyId: 'kmsKeyId',
  },
};

Properties

NameTypeDescription
enableOnlineStore?boolean | IResolvableTurn OnlineStore off by specifying False for the EnableOnlineStore flag.
securityConfig?IResolvable | OnlineStoreSecurityConfigPropertyUse to specify KMS Key ID ( KMSKeyId ) for at-rest encryption of your OnlineStore .

enableOnlineStore?

Type: boolean | IResolvable (optional)

Turn OnlineStore off by specifying False for the EnableOnlineStore flag.

Turn OnlineStore on by specifying True for the EnableOnlineStore flag.

The default value is False .


securityConfig?

Type: IResolvable | OnlineStoreSecurityConfigProperty (optional)

Use to specify KMS Key ID ( KMSKeyId ) for at-rest encryption of your OnlineStore .