Class: Aws::DynamoDB::Types::ProvisionedThroughputOverride
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::DynamoDB::Types::ProvisionedThroughputOverride
 
 
- Defined in:
 - gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb
 
Overview
Replica-specific provisioned throughput settings. If not specified, uses the source table's provisioned throughput settings.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #read_capacity_units  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Replica-specific read capacity units.
 
Instance Attribute Details
#read_capacity_units ⇒ Integer
Replica-specific read capacity units. If not specified, uses the source table's read capacity settings.
      6249 6250 6251 6252 6253  | 
    
      # File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 6249 class ProvisionedThroughputOverride < Struct.new( :read_capacity_units) SENSITIVE = [] include Aws::Structure end  |