Class: Aws::DynamoDB::Types::Capacity
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::Capacity
- 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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#capacity_units ⇒ Float
The total number of capacity units consumed on a table or an index.
-
#read_capacity_units ⇒ Float
The total number of read capacity units consumed on a table or an index.
-
#write_capacity_units ⇒ Float
The total number of write capacity units consumed on a table or an index.
Instance Attribute Details
#capacity_units ⇒ Float
The total number of capacity units consumed on a table or an index.
1235 1236 1237 1238 1239 1240 1241 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 1235 class Capacity < Struct.new( :read_capacity_units, :write_capacity_units, :capacity_units) SENSITIVE = [] include Aws::Structure end |
#read_capacity_units ⇒ Float
The total number of read capacity units consumed on a table or an index.
1235 1236 1237 1238 1239 1240 1241 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 1235 class Capacity < Struct.new( :read_capacity_units, :write_capacity_units, :capacity_units) SENSITIVE = [] include Aws::Structure end |
#write_capacity_units ⇒ Float
The total number of write capacity units consumed on a table or an index.
1235 1236 1237 1238 1239 1240 1241 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 1235 class Capacity < Struct.new( :read_capacity_units, :write_capacity_units, :capacity_units) SENSITIVE = [] include Aws::Structure end |