Interface CfnTableBucketProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTableBucketProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-05T22:26:44.748Z")
@Stability(Stable)
public interface CfnTableBucketProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
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 ObjectSpecifies storage class settings for the table bucket.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
Specifies storage class settings for the table bucket.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
-