interface S3StorageConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnFeatureGroupPropsMixin.S3StorageConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnFeatureGroupPropsMixin_S3StorageConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnFeatureGroupPropsMixin.S3StorageConfigProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnFeatureGroupPropsMixin.S3StorageConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnFeatureGroupPropsMixin » S3StorageConfigProperty |
The Amazon Simple Storage (Amazon S3) location and security configuration for OfflineStore .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const s3StorageConfigProperty: sagemaker_mixins.CfnFeatureGroupPropsMixin.S3StorageConfigProperty = {
kmsKeyId: 'kmsKeyId',
s3Uri: 's3Uri',
};
Properties
| Name | Type | Description |
|---|---|---|
| kms | string | The AWS Key Management Service (KMS) key ARN of the key used to encrypt any objects written into the OfflineStore S3 location. |
| s3 | string | The S3 URI, or location in Amazon S3, of OfflineStore . |
kmsKeyId?
Type:
string
(optional)
The AWS Key Management Service (KMS) key ARN of the key used to encrypt any objects written into the OfflineStore S3 location.
The IAM roleARN that is passed as a parameter to CreateFeatureGroup must have below permissions to the KmsKeyId :
"kms:GenerateDataKey"
s3Uri?
Type:
string
(optional)
The S3 URI, or location in Amazon S3, of OfflineStore .
S3 URIs have a format similar to the following: s3://example-bucket/prefix/ .

.NET
Go
Java
Python
TypeScript