Interface CfnFeatureGroup.S3StorageConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFeatureGroup.S3StorageConfigProperty.Jsii$Proxy
- Enclosing class:
CfnFeatureGroup
@Stability(Stable)
public static interface CfnFeatureGroup.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.services.sagemaker.*;
S3StorageConfigProperty s3StorageConfigProperty = S3StorageConfigProperty.builder()
.s3Uri("s3Uri")
// the properties below are optional
.kmsKeyId("kmsKeyId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFeatureGroup.S3StorageConfigPropertystatic final classAn implementation forCfnFeatureGroup.S3StorageConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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:
-
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:
-
builder
-