Class: Aws::RDS::Types::ModifyDBShardGroupMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::ModifyDBShardGroupMessage
- Defined in:
- gems/aws-sdk-rds/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.
19651 19652 19653 19654 19655 19656 19657 19658 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 19651 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.
19651 19652 19653 19654 19655 19656 19657 19658 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 19651 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).
19651 19652 19653 19654 19655 19656 19657 19658 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 19651 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).
19651 19652 19653 19654 19655 19656 19657 19658 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 19651 class ModifyDBShardGroupMessage < Struct.new( :db_shard_group_identifier, :max_acu, :min_acu, :compute_redundancy) SENSITIVE = [] include Aws::Structure end |