Class: Aws::DynamoDB::Types::TableWarmThroughputDescription

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb

Overview

Represents the warm throughput value (in read units per second and write units per second) of the base table.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#read_units_per_secondInteger

Represents the base table's warm throughput value in read units per second.

Returns:

  • (Integer)


9060
9061
9062
9063
9064
9065
9066
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 9060

class TableWarmThroughputDescription < Struct.new(
  :read_units_per_second,
  :write_units_per_second,
  :status)
  SENSITIVE = []
  include Aws::Structure
end

#statusString

Represents warm throughput value of the base table..

Returns:

  • (String)


9060
9061
9062
9063
9064
9065
9066
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 9060

class TableWarmThroughputDescription < Struct.new(
  :read_units_per_second,
  :write_units_per_second,
  :status)
  SENSITIVE = []
  include Aws::Structure
end

#write_units_per_secondInteger

Represents the base table's warm throughput value in write units per second.

Returns:

  • (Integer)


9060
9061
9062
9063
9064
9065
9066
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 9060

class TableWarmThroughputDescription < Struct.new(
  :read_units_per_second,
  :write_units_per_second,
  :status)
  SENSITIVE = []
  include Aws::Structure
end