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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFeatureGroup.S3StorageConfigProperty
static final class
An 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 theOfflineStore
S3 location.The IAM
roleARN
that is passed as a parameter toCreateFeatureGroup
must have below permissions to theKmsKeyId
:"kms:GenerateDataKey"
- See Also:
-
builder
-