Class: Aws::DynamoDB::Types::TableClassSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::TableClassSummary
- Defined in:
- gems/aws-sdk-dynamodb/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.
8550 8551 8552 8553 8554 8555 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 8550 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
.
8550 8551 8552 8553 8554 8555 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 8550 class TableClassSummary < Struct.new( :table_class, :last_update_date_time) SENSITIVE = [] include Aws::Structure end |