Class: Aws::S3Tables::Types::StorageClassConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Tables::Types::StorageClassConfiguration
- Defined in:
- gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#storage_class ⇒ String
The storage class for the table or table bucket.
Instance Attribute Details
#storage_class ⇒ String
The storage class for the table or table bucket. Valid values include storage classes optimized for different access patterns and cost profiles.
1993 1994 1995 1996 1997 |
# File 'gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb', line 1993 class StorageClassConfiguration < Struct.new( :storage_class) SENSITIVE = [] include Aws::Structure end |