Class: Aws::DynamoDB::Types::DescribeLimitsOutput
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::DynamoDB::Types::DescribeLimitsOutput
 
 
- Defined in:
 - gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb
 
Overview
Represents the output of a DescribeLimits operation.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #account_max_read_capacity_units  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The maximum total read capacity units that your account allows you to provision across all of your tables in this Region.
 - 
  
    
      #account_max_write_capacity_units  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The maximum total write capacity units that your account allows you to provision across all of your tables in this Region.
 - 
  
    
      #table_max_read_capacity_units  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
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).
 - 
  
    
      #table_max_write_capacity_units  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
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).
 
Instance Attribute Details
#account_max_read_capacity_units ⇒ Integer
The maximum total read capacity units that your account allows you to provision across all of your tables in this Region.
      3018 3019 3020 3021 3022 3023 3024 3025  | 
    
      # File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 3018 class DescribeLimitsOutput < Struct.new( :account_max_read_capacity_units, :account_max_write_capacity_units, :table_max_read_capacity_units, :table_max_write_capacity_units) SENSITIVE = [] include Aws::Structure end  | 
  
#account_max_write_capacity_units ⇒ Integer
The maximum total write capacity units that your account allows you to provision across all of your tables in this Region.
      3018 3019 3020 3021 3022 3023 3024 3025  | 
    
      # File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 3018 class DescribeLimitsOutput < Struct.new( :account_max_read_capacity_units, :account_max_write_capacity_units, :table_max_read_capacity_units, :table_max_write_capacity_units) SENSITIVE = [] include Aws::Structure end  | 
  
#table_max_read_capacity_units ⇒ Integer
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).
      3018 3019 3020 3021 3022 3023 3024 3025  | 
    
      # File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 3018 class DescribeLimitsOutput < Struct.new( :account_max_read_capacity_units, :account_max_write_capacity_units, :table_max_read_capacity_units, :table_max_write_capacity_units) SENSITIVE = [] include Aws::Structure end  | 
  
#table_max_write_capacity_units ⇒ Integer
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).
      3018 3019 3020 3021 3022 3023 3024 3025  | 
    
      # File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 3018 class DescribeLimitsOutput < Struct.new( :account_max_read_capacity_units, :account_max_write_capacity_units, :table_max_read_capacity_units, :table_max_write_capacity_units) SENSITIVE = [] include Aws::Structure end  |