Class: Aws::DynamoDB::Types::Capacity
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::Capacity
- Defined in:
- gems/aws-sdk-dynamodb/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.
1241 1242 1243 1244 1245 1246 1247 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 1241 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.
1241 1242 1243 1244 1245 1246 1247 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 1241 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.
1241 1242 1243 1244 1245 1246 1247 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 1241 class Capacity < Struct.new( :read_capacity_units, :write_capacity_units, :capacity_units) SENSITIVE = [] include Aws::Structure end |