Class: Aws::DynamoDB::Types::DescribeLimitsOutput

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

Overview

Represents the output of a ‘DescribeLimits` operation.

Instance Attribute Summary collapse

Instance Attribute Details

#account_max_read_capacity_unitsInteger

The maximum total read capacity units that your account allows you to provision across all of your tables in this region.

Returns:

  • (Integer)


2597
2598
2599
2600
2601
2602
2603
# File 'lib/aws-sdk-dynamodb/types.rb', line 2597

class DescribeLimitsOutput < Struct.new(
  :account_max_read_capacity_units,
  :account_max_write_capacity_units,
  :table_max_read_capacity_units,
  :table_max_write_capacity_units)
  include Aws::Structure
end

#account_max_write_capacity_unitsInteger

The maximum total write capacity units that your account allows you to provision across all of your tables in this region.

Returns:

  • (Integer)


2597
2598
2599
2600
2601
2602
2603
# File 'lib/aws-sdk-dynamodb/types.rb', line 2597

class DescribeLimitsOutput < Struct.new(
  :account_max_read_capacity_units,
  :account_max_write_capacity_units,
  :table_max_read_capacity_units,
  :table_max_write_capacity_units)
  include Aws::Structure
end

#table_max_read_capacity_unitsInteger

The maximum read capacity units that your account allows you to provision for a new table that you are creating in this region, including the read capacity units provisioned for its global secondary indexes (GSIs).

Returns:

  • (Integer)


2597
2598
2599
2600
2601
2602
2603
# File 'lib/aws-sdk-dynamodb/types.rb', line 2597

class DescribeLimitsOutput < Struct.new(
  :account_max_read_capacity_units,
  :account_max_write_capacity_units,
  :table_max_read_capacity_units,
  :table_max_write_capacity_units)
  include Aws::Structure
end

#table_max_write_capacity_unitsInteger

The maximum write capacity units that your account allows you to provision for a new table that you are creating in this region, including the write capacity units provisioned for its global secondary indexes (GSIs).

Returns:

  • (Integer)


2597
2598
2599
2600
2601
2602
2603
# File 'lib/aws-sdk-dynamodb/types.rb', line 2597

class DescribeLimitsOutput < Struct.new(
  :account_max_read_capacity_units,
  :account_max_write_capacity_units,
  :table_max_read_capacity_units,
  :table_max_write_capacity_units)
  include Aws::Structure
end