Interface CfnTableBucket.StorageClassConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTableBucket.StorageClassConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnTableBucket

@Stability(Stable) public static interface CfnTableBucket.StorageClassConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.s3tables.*;
 StorageClassConfigurationProperty storageClassConfigurationProperty = StorageClassConfigurationProperty.builder()
         .storageClass("storageClass")
         .build();
 

See Also: