Class: Aws::DynamoDB::Types::AutoScalingSettingsUpdate
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::DynamoDB::Types::AutoScalingSettingsUpdate
 
 
- Defined in:
 - gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb
 
Overview
Represents the auto scaling settings to be modified for a global table or global secondary index.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #auto_scaling_disabled  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Disabled auto scaling for this global table or global secondary index.
 - 
  
    
      #auto_scaling_role_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Role ARN used for configuring auto scaling policy.
 - 
  
    
      #maximum_units  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The maximum capacity units that a global table or global secondary index should be scaled up to.
 - 
  
    
      #minimum_units  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The minimum capacity units that a global table or global secondary index should be scaled down to.
 - 
  
    
      #scaling_policy_update  ⇒ Types::AutoScalingPolicyUpdate 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The scaling policy to apply for scaling target global table or global secondary index capacity units.
 
Instance Attribute Details
#auto_scaling_disabled ⇒ Boolean
Disabled auto scaling for this global table or global secondary index.
      391 392 393 394 395 396 397 398 399  | 
    
      # File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 391 class AutoScalingSettingsUpdate < Struct.new( :minimum_units, :maximum_units, :auto_scaling_disabled, :auto_scaling_role_arn, :scaling_policy_update) SENSITIVE = [] include Aws::Structure end  | 
  
#auto_scaling_role_arn ⇒ String
Role ARN used for configuring auto scaling policy.
      391 392 393 394 395 396 397 398 399  | 
    
      # File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 391 class AutoScalingSettingsUpdate < Struct.new( :minimum_units, :maximum_units, :auto_scaling_disabled, :auto_scaling_role_arn, :scaling_policy_update) SENSITIVE = [] include Aws::Structure end  | 
  
#maximum_units ⇒ Integer
The maximum capacity units that a global table or global secondary index should be scaled up to.
      391 392 393 394 395 396 397 398 399  | 
    
      # File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 391 class AutoScalingSettingsUpdate < Struct.new( :minimum_units, :maximum_units, :auto_scaling_disabled, :auto_scaling_role_arn, :scaling_policy_update) SENSITIVE = [] include Aws::Structure end  | 
  
#minimum_units ⇒ Integer
The minimum capacity units that a global table or global secondary index should be scaled down to.
      391 392 393 394 395 396 397 398 399  | 
    
      # File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 391 class AutoScalingSettingsUpdate < Struct.new( :minimum_units, :maximum_units, :auto_scaling_disabled, :auto_scaling_role_arn, :scaling_policy_update) SENSITIVE = [] include Aws::Structure end  | 
  
#scaling_policy_update ⇒ Types::AutoScalingPolicyUpdate
The scaling policy to apply for scaling target global table or global secondary index capacity units.
      391 392 393 394 395 396 397 398 399  | 
    
      # File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 391 class AutoScalingSettingsUpdate < Struct.new( :minimum_units, :maximum_units, :auto_scaling_disabled, :auto_scaling_role_arn, :scaling_policy_update) SENSITIVE = [] include Aws::Structure end  |