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

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#capacity_unitsFloat

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

Returns:

  • (Float)


1242
1243
1244
1245
1246
1247
1248
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 1242

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

#read_capacity_unitsFloat

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

Returns:

  • (Float)


1242
1243
1244
1245
1246
1247
1248
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 1242

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

#write_capacity_unitsFloat

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

Returns:

  • (Float)


1242
1243
1244
1245
1246
1247
1248
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 1242

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