Class S3StorageConfig
- java.lang.Object
-
- software.amazon.awssdk.services.sagemaker.model.S3StorageConfig
-
- All Implemented Interfaces:
Serializable
,SdkPojo
,ToCopyableBuilder<S3StorageConfig.Builder,S3StorageConfig>
@Generated("software.amazon.awssdk:codegen") public final class S3StorageConfig extends Object implements SdkPojo, Serializable, ToCopyableBuilder<S3StorageConfig.Builder,S3StorageConfig>
The Amazon Simple Storage (Amazon S3) location and security configuration for
OfflineStore
.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
S3StorageConfig.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static S3StorageConfig.Builder
builder()
boolean
equals(Object obj)
boolean
equalsBySdkFields(Object obj)
<T> Optional<T>
getValueForField(String fieldName, Class<T> clazz)
int
hashCode()
String
kmsKeyId()
The Amazon Web Services Key Management Service (KMS) key ARN of the key used to encrypt any objects written into theOfflineStore
S3 location.String
resolvedOutputS3Uri()
The S3 path where offline records are written.String
s3Uri()
The S3 URI, or location in Amazon S3, ofOfflineStore
.List<SdkField<?>>
sdkFields()
static Class<? extends S3StorageConfig.Builder>
serializableBuilderClass()
S3StorageConfig.Builder
toBuilder()
String
toString()
Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
s3Uri
public final String s3Uri()
The S3 URI, or location in Amazon S3, of
OfflineStore
.S3 URIs have a format similar to the following:
s3://example-bucket/prefix/
.- Returns:
- The S3 URI, or location in Amazon S3, of
OfflineStore
.S3 URIs have a format similar to the following:
s3://example-bucket/prefix/
.
-
kmsKeyId
public final String kmsKeyId()
The Amazon Web Services 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 toCreateFeatureGroup
must have below permissions to theKmsKeyId
:-
"kms:GenerateDataKey"
- Returns:
- The Amazon Web Services 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 toCreateFeatureGroup
must have below permissions to theKmsKeyId
:-
"kms:GenerateDataKey"
-
-
-
resolvedOutputS3Uri
public final String resolvedOutputS3Uri()
The S3 path where offline records are written.
- Returns:
- The S3 path where offline records are written.
-
toBuilder
public S3StorageConfig.Builder toBuilder()
- Specified by:
toBuilder
in interfaceToCopyableBuilder<S3StorageConfig.Builder,S3StorageConfig>
-
builder
public static S3StorageConfig.Builder builder()
-
serializableBuilderClass
public static Class<? extends S3StorageConfig.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFields
in interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-