Class: Aws::DynamoDB::Types::ReplicaGlobalSecondaryIndex
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::DynamoDB::Types::ReplicaGlobalSecondaryIndex
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-dynamodb/types.rb
 
Overview
Represents the properties of a replica global secondary index.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #index_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the global secondary index.
 - 
  
    
      #on_demand_throughput_override  ⇒ Types::OnDemandThroughputOverride 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Overrides the maximum on-demand throughput settings for the specified global secondary index in the specified replica table.
 - 
  
    
      #provisioned_throughput_override  ⇒ Types::ProvisionedThroughputOverride 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Replica table GSI-specific provisioned throughput.
 
Instance Attribute Details
#index_name ⇒ String
The name of the global secondary index.
      7200 7201 7202 7203 7204 7205 7206  | 
    
      # File 'lib/aws-sdk-dynamodb/types.rb', line 7200 class ReplicaGlobalSecondaryIndex < Struct.new( :index_name, :provisioned_throughput_override, :on_demand_throughput_override) SENSITIVE = [] include Aws::Structure end  | 
  
#on_demand_throughput_override ⇒ Types::OnDemandThroughputOverride
Overrides the maximum on-demand throughput settings for the specified global secondary index in the specified replica table.
      7200 7201 7202 7203 7204 7205 7206  | 
    
      # File 'lib/aws-sdk-dynamodb/types.rb', line 7200 class ReplicaGlobalSecondaryIndex < Struct.new( :index_name, :provisioned_throughput_override, :on_demand_throughput_override) SENSITIVE = [] include Aws::Structure end  | 
  
#provisioned_throughput_override ⇒ Types::ProvisionedThroughputOverride
Replica table GSI-specific provisioned throughput. If not specified, uses the source table GSI’s read capacity settings.
      7200 7201 7202 7203 7204 7205 7206  | 
    
      # File 'lib/aws-sdk-dynamodb/types.rb', line 7200 class ReplicaGlobalSecondaryIndex < Struct.new( :index_name, :provisioned_throughput_override, :on_demand_throughput_override) SENSITIVE = [] include Aws::Structure end  |