Class: Aws::DynamoDB::Types::Capacity

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

Overview

Represents the amount of provisioned throughput capacity consumed on a table or an index.

Instance Attribute Summary collapse

Instance Attribute Details

#capacity_unitsFloat

The total number of capacity units consumed on a table or an index.

Returns:

  • (Float)


1125
1126
1127
1128
1129
1130
# File 'lib/aws-sdk-dynamodb/types.rb', line 1125

class Capacity < Struct.new(
  :read_capacity_units,
  :write_capacity_units,
  :capacity_units)
  include Aws::Structure
end

#read_capacity_unitsFloat

The total number of read capacity units consumed on a table or an index.

Returns:

  • (Float)


1125
1126
1127
1128
1129
1130
# File 'lib/aws-sdk-dynamodb/types.rb', line 1125

class Capacity < Struct.new(
  :read_capacity_units,
  :write_capacity_units,
  :capacity_units)
  include Aws::Structure
end

#write_capacity_unitsFloat

The total number of write capacity units consumed on a table or an index.

Returns:

  • (Float)


1125
1126
1127
1128
1129
1130
# File 'lib/aws-sdk-dynamodb/types.rb', line 1125

class Capacity < Struct.new(
  :read_capacity_units,
  :write_capacity_units,
  :capacity_units)
  include Aws::Structure
end