Interface CfnTableBucketProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTableBucketProps.Jsii$Proxy
CfnTableBucket.
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.s3tables.*;
CfnTableBucketProps cfnTableBucketProps = CfnTableBucketProps.builder()
.tableBucketName("tableBucketName")
// the properties below are optional
.encryptionConfiguration(EncryptionConfigurationProperty.builder()
.kmsKeyArn("kmsKeyArn")
.sseAlgorithm("sseAlgorithm")
.build())
.metricsConfiguration(MetricsConfigurationProperty.builder()
.status("status")
.build())
.storageClassConfiguration(StorageClassConfigurationProperty.builder()
.storageClass("storageClass")
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.unreferencedFileRemoval(UnreferencedFileRemovalProperty.builder()
.noncurrentDays(123)
.status("status")
.unreferencedDays(123)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTableBucketPropsstatic final classAn implementation forCfnTableBucketProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnTableBucketProps.Builderbuilder()default ObjectConfiguration specifying how data should be encrypted.default ObjectSettings governing the Metric configuration for the table bucket.default ObjectThe configuration details for the storage class of tables or table buckets.The name for the table bucket.getTags()User tags (key-value pairs) to associate with the table bucket.default ObjectThe unreferenced file removal settings for your table bucket.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTableBucketName
The name for the table bucket.- See Also:
-
getEncryptionConfiguration
Configuration specifying how data should be encrypted.This structure defines the encryption algorithm and optional KMS key to be used for server-side encryption.
Returns union: either
IResolvableorCfnTableBucket.EncryptionConfigurationProperty- See Also:
-
getMetricsConfiguration
Settings governing the Metric configuration for the table bucket.Returns union: either
IResolvableorCfnTableBucket.MetricsConfigurationProperty- See Also:
-
getStorageClassConfiguration
The configuration details for the storage class of tables or table buckets.This allows you to optimize storage costs by selecting the appropriate storage class based on your access patterns and performance requirements.
Returns union: either
IResolvableorCfnTableBucket.StorageClassConfigurationProperty- See Also:
-
getTags
User tags (key-value pairs) to associate with the table bucket.- See Also:
-
getUnreferencedFileRemoval
The unreferenced file removal settings for your table bucket.Unreferenced file removal identifies and deletes all objects that are not referenced by any table snapshots. For more information, see the Amazon S3 User Guide .
Returns union: either
IResolvableorCfnTableBucket.UnreferencedFileRemovalProperty- See Also:
-
builder
- Returns:
- a
CfnTableBucketProps.BuilderofCfnTableBucketProps
-