interface StorageClassConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.S3Tables.CfnTableBucket.StorageClassConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awss3tables#CfnTableBucket_StorageClassConfigurationProperty |
Java | software.amazon.awscdk.services.s3tables.CfnTableBucket.StorageClassConfigurationProperty |
Python | aws_cdk.aws_s3tables.CfnTableBucket.StorageClassConfigurationProperty |
TypeScript | aws-cdk-lib » aws_s3tables » CfnTableBucket » StorageClassConfigurationProperty |
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.
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 storageClassConfigurationProperty: s3tables.CfnTableBucket.StorageClassConfigurationProperty = {
storageClass: 'storageClass',
};
Properties
| Name | Type | Description |
|---|---|---|
| storage | string | The storage class for the table or table bucket. |
storageClass?
Type:
string
(optional)
The storage class for the table or table bucket.
Valid values include storage classes optimized for different access patterns and cost profiles.

.NET
Go
Java
Python
TypeScript