Interface CfnFeatureGroupPropsMixin.S3StorageConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFeatureGroupPropsMixin.S3StorageConfigProperty.Jsii$Proxy
- Enclosing class:
CfnFeatureGroupPropsMixin
@Stability(Stable)
public static interface CfnFeatureGroupPropsMixin.S3StorageConfigProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.sagemaker.*;
S3StorageConfigProperty s3StorageConfigProperty = S3StorageConfigProperty.builder()
.kmsKeyId("kmsKeyId")
.s3Uri("s3Uri")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFeatureGroupPropsMixin.S3StorageConfigPropertystatic final classAn implementation forCfnFeatureGroupPropsMixin.S3StorageConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKmsKeyId
The AWS Key Management Service (KMS) key ARN of the key used to encrypt any objects written into theOfflineStoreS3 location.The IAM
roleARNthat is passed as a parameter toCreateFeatureGroupmust have below permissions to theKmsKeyId:"kms:GenerateDataKey"
- See Also:
-
getS3Uri
The S3 URI, or location in Amazon S3, ofOfflineStore.S3 URIs have a format similar to the following:
s3://example-bucket/prefix/.- See Also:
-
builder
-