interface StorageClassConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.S3Tables.CfnTable.StorageClassConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awss3tables#CfnTable_StorageClassConfigurationProperty |
Java | software.amazon.awscdk.services.s3tables.CfnTable.StorageClassConfigurationProperty |
Python | aws_cdk.aws_s3tables.CfnTable.StorageClassConfigurationProperty |
TypeScript | aws-cdk-lib » aws_s3tables » CfnTable » StorageClassConfigurationProperty |
Specifies storage class settings for the table.
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.CfnTable.StorageClassConfigurationProperty = {
storageClass: 'storageClass',
};
Properties
| Name | Type | Description |
|---|---|---|
| storage | string | The storage class for the table. |
storageClass?
Type:
string
(optional)
The storage class for the table.

.NET
Go
Java
Python
TypeScript