Class: Aws::RDS::Types::ModifyDBShardGroupMessage
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::RDS::Types::ModifyDBShardGroupMessage
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-rds/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #compute_redundancy  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies whether to create standby DB shard groups for the DB shard group.
 - 
  
    
      #db_shard_group_identifier  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the DB shard group to modify.
 - 
  
    
      #max_acu  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The maximum capacity of the DB shard group in Aurora capacity units (ACUs).
 - 
  
    
      #min_acu  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The minimum capacity of the DB shard group in Aurora capacity units (ACUs).
 
Instance Attribute Details
#compute_redundancy ⇒ Integer
Specifies whether to create standby DB shard groups for the DB shard group. Valid values are the following:
- 
0 - Creates a DB shard group without a standby DB shard group. This is the default value.
 - 
1 - Creates a DB shard group with a standby DB shard group in a different Availability Zone (AZ).
 - 
2 - Creates a DB shard group with two standby DB shard groups in two different AZs.
 
      19834 19835 19836 19837 19838 19839 19840 19841  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 19834 class ModifyDBShardGroupMessage < Struct.new( :db_shard_group_identifier, :max_acu, :min_acu, :compute_redundancy) SENSITIVE = [] include Aws::Structure end  | 
  
#db_shard_group_identifier ⇒ String
The name of the DB shard group to modify.
      19834 19835 19836 19837 19838 19839 19840 19841  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 19834 class ModifyDBShardGroupMessage < Struct.new( :db_shard_group_identifier, :max_acu, :min_acu, :compute_redundancy) SENSITIVE = [] include Aws::Structure end  | 
  
#max_acu ⇒ Float
The maximum capacity of the DB shard group in Aurora capacity units (ACUs).
      19834 19835 19836 19837 19838 19839 19840 19841  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 19834 class ModifyDBShardGroupMessage < Struct.new( :db_shard_group_identifier, :max_acu, :min_acu, :compute_redundancy) SENSITIVE = [] include Aws::Structure end  | 
  
#min_acu ⇒ Float
The minimum capacity of the DB shard group in Aurora capacity units (ACUs).
      19834 19835 19836 19837 19838 19839 19840 19841  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 19834 class ModifyDBShardGroupMessage < Struct.new( :db_shard_group_identifier, :max_acu, :min_acu, :compute_redundancy) SENSITIVE = [] include Aws::Structure end  |