Class: Aws::ElastiCache::Types::ModifyReplicationGroupShardConfigurationMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElastiCache::Types::ModifyReplicationGroupShardConfigurationMessage
- Defined in:
- gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb
Overview
Represents the input for a ModifyReplicationGroupShardConfiguration
operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#apply_immediately ⇒ Boolean
Indicates that the shard reconfiguration process begins immediately.
-
#node_group_count ⇒ Integer
The number of node groups (shards) that results from the modification of the shard configuration.
-
#node_groups_to_remove ⇒ Array<String>
If the value of
NodeGroupCount
is less than the current number of node groups (shards), then eitherNodeGroupsToRemove
orNodeGroupsToRetain
is required. -
#node_groups_to_retain ⇒ Array<String>
If the value of
NodeGroupCount
is less than the current number of node groups (shards), then eitherNodeGroupsToRemove
orNodeGroupsToRetain
is required. -
#replication_group_id ⇒ String
The name of the Valkey or Redis OSS (cluster mode enabled) cluster (replication group) on which the shards are to be configured.
-
#resharding_configuration ⇒ Array<Types::ReshardingConfiguration>
Specifies the preferred availability zones for each node group in the cluster.
Instance Attribute Details
#apply_immediately ⇒ Boolean
Indicates that the shard reconfiguration process begins immediately.
At present, the only permitted value for this parameter is true
.
Value: true
6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 6687 class ModifyReplicationGroupShardConfigurationMessage < Struct.new( :replication_group_id, :node_group_count, :apply_immediately, :resharding_configuration, :node_groups_to_remove, :node_groups_to_retain) SENSITIVE = [] include Aws::Structure end |
#node_group_count ⇒ Integer
The number of node groups (shards) that results from the modification of the shard configuration.
6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 6687 class ModifyReplicationGroupShardConfigurationMessage < Struct.new( :replication_group_id, :node_group_count, :apply_immediately, :resharding_configuration, :node_groups_to_remove, :node_groups_to_retain) SENSITIVE = [] include Aws::Structure end |
#node_groups_to_remove ⇒ Array<String>
If the value of NodeGroupCount
is less than the current number of
node groups (shards), then either NodeGroupsToRemove
or
NodeGroupsToRetain
is required. NodeGroupsToRemove
is a list of
NodeGroupId
s to remove from the cluster.
ElastiCache will attempt to remove all node groups listed by
NodeGroupsToRemove
from the cluster.
6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 6687 class ModifyReplicationGroupShardConfigurationMessage < Struct.new( :replication_group_id, :node_group_count, :apply_immediately, :resharding_configuration, :node_groups_to_remove, :node_groups_to_retain) SENSITIVE = [] include Aws::Structure end |
#node_groups_to_retain ⇒ Array<String>
If the value of NodeGroupCount
is less than the current number of
node groups (shards), then either NodeGroupsToRemove
or
NodeGroupsToRetain
is required. NodeGroupsToRetain
is a list of
NodeGroupId
s to retain in the cluster.
ElastiCache will attempt to remove all node groups except those
listed by NodeGroupsToRetain
from the cluster.
6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 6687 class ModifyReplicationGroupShardConfigurationMessage < Struct.new( :replication_group_id, :node_group_count, :apply_immediately, :resharding_configuration, :node_groups_to_remove, :node_groups_to_retain) SENSITIVE = [] include Aws::Structure end |
#replication_group_id ⇒ String
The name of the Valkey or Redis OSS (cluster mode enabled) cluster (replication group) on which the shards are to be configured.
6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 6687 class ModifyReplicationGroupShardConfigurationMessage < Struct.new( :replication_group_id, :node_group_count, :apply_immediately, :resharding_configuration, :node_groups_to_remove, :node_groups_to_retain) SENSITIVE = [] include Aws::Structure end |
#resharding_configuration ⇒ Array<Types::ReshardingConfiguration>
Specifies the preferred availability zones for each node group in
the cluster. If the value of NodeGroupCount
is greater than the
current number of node groups (shards), you can use this parameter
to specify the preferred availability zones of the cluster's
shards. If you omit this parameter ElastiCache selects availability
zones for you.
You can specify this parameter only if the value of NodeGroupCount
is greater than the current number of node groups (shards).
6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 6687 class ModifyReplicationGroupShardConfigurationMessage < Struct.new( :replication_group_id, :node_group_count, :apply_immediately, :resharding_configuration, :node_groups_to_remove, :node_groups_to_retain) SENSITIVE = [] include Aws::Structure end |