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)


9099
9100
9101
9102
9103
9104
9105
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 9099

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)


9099
9100
9101
9102
9103
9104
9105
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 9099

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)


9099
9100
9101
9102
9103
9104
9105
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 9099

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