Class: Aws::DynamoDB::Types::TableClassSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::TableClassSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-dynamodb/types.rb
Overview
Contains details of the table class.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#last_update_date_time ⇒ Time
The date and time at which the table class was last updated.
-
#table_class ⇒ String
The table class of the specified table.
Instance Attribute Details
#last_update_date_time ⇒ Time
The date and time at which the table class was last updated.
8606 8607 8608 8609 8610 8611 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 8606 class TableClassSummary < Struct.new( :table_class, :last_update_date_time) SENSITIVE = [] include Aws::Structure end |
#table_class ⇒ String
The table class of the specified table. Valid values are ‘STANDARD` and `STANDARD_INFREQUENT_ACCESS`.
8606 8607 8608 8609 8610 8611 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 8606 class TableClassSummary < Struct.new( :table_class, :last_update_date_time) SENSITIVE = [] include Aws::Structure end |