public static interface CfnFeatureGroup.S3StorageConfigProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnFeatureGroup.S3StorageConfigProperty.Builder
A builder for
CfnFeatureGroup.S3StorageConfigProperty |
static class |
CfnFeatureGroup.S3StorageConfigProperty.Jsii$Proxy
An implementation for
CfnFeatureGroup.S3StorageConfigProperty |
Modifier and Type | Method and Description |
---|---|
static CfnFeatureGroup.S3StorageConfigProperty.Builder |
builder() |
default java.lang.String |
getKmsKeyId()
The AWS Key Management Service (KMS) key ARN of the key used to encrypt any objects written into the `OfflineStore` S3 location.
|
java.lang.String |
getS3Uri()
The S3 URI, or location in Amazon S3, of `OfflineStore` .
|
java.lang.String getS3Uri()
S3 URIs have a format similar to the following: s3://example-bucket/prefix/
.
default java.lang.String getKmsKeyId()
The IAM roleARN
that is passed as a parameter to CreateFeatureGroup
must have below permissions to the KmsKeyId
:
"kms:GenerateDataKey"
static CfnFeatureGroup.S3StorageConfigProperty.Builder builder()