Class: Aws::DynamoDB::Types::TableClassSummary

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#last_update_date_timeTime

The date and time at which the table class was last updated.

Returns:

  • (Time)


8536
8537
8538
8539
8540
8541
# File 'lib/aws-sdk-dynamodb/types.rb', line 8536

class TableClassSummary < Struct.new(
  :table_class,
  :last_update_date_time)
  SENSITIVE = []
  include Aws::Structure
end

#table_classString

The table class of the specified table. Valid values are ‘STANDARD` and `STANDARD_INFREQUENT_ACCESS`.

Returns:

  • (String)


8536
8537
8538
8539
8540
8541
# File 'lib/aws-sdk-dynamodb/types.rb', line 8536

class TableClassSummary < Struct.new(
  :table_class,
  :last_update_date_time)
  SENSITIVE = []
  include Aws::Structure
end