interface CfnTableBucketProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.S3Tables.CfnTableBucketProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awss3tables#CfnTableBucketProps |
Java | software.amazon.awscdk.services.s3tables.CfnTableBucketProps |
Python | aws_cdk.aws_s3tables.CfnTableBucketProps |
TypeScript | aws-cdk-lib » aws_s3tables » CfnTableBucketProps |
Properties for defining a CfnTableBucket.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablebucket.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_s3tables as s3tables } from 'aws-cdk-lib';
const cfnTableBucketProps: s3tables.CfnTableBucketProps = {
tableBucketName: 'tableBucketName',
// the properties below are optional
encryptionConfiguration: {
kmsKeyArn: 'kmsKeyArn',
sseAlgorithm: 'sseAlgorithm',
},
metricsConfiguration: {
status: 'status',
},
storageClassConfiguration: {
storageClass: 'storageClass',
},
tags: [{
key: 'key',
value: 'value',
}],
unreferencedFileRemoval: {
noncurrentDays: 123,
status: 'status',
unreferencedDays: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| table | string | The name for the table bucket. |
| encryption | IResolvable | Encryption | Configuration specifying how data should be encrypted. |
| metrics | IResolvable | Metrics | Settings governing the Metric configuration for the table bucket. |
| storage | IResolvable | Storage | The configuration details for the storage class of tables or table buckets. |
| tags? | Cfn[] | User tags (key-value pairs) to associate with the table bucket. |
| unreferenced | IResolvable | Unreferenced | The unreferenced file removal settings for your table bucket. |
tableBucketName
Type:
string
The name for the table bucket.
encryptionConfiguration?
Type:
IResolvable | Encryption
(optional)
Configuration specifying how data should be encrypted.
This structure defines the encryption algorithm and optional KMS key to be used for server-side encryption.
metricsConfiguration?
Type:
IResolvable | Metrics
(optional)
Settings governing the Metric configuration for the table bucket.
storageClassConfiguration?
Type:
IResolvable | Storage
(optional)
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.
tags?
Type:
Cfn[]
(optional)
User tags (key-value pairs) to associate with the table bucket.
unreferencedFileRemoval?
Type:
IResolvable | Unreferenced
(optional)
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 .

.NET
Go
Java
Python
TypeScript