public static interface DecreaseReplicaCountRequest.Builder extends ElastiCacheRequest.Builder, SdkPojo, CopyableBuilder<DecreaseReplicaCountRequest.Builder,DecreaseReplicaCountRequest>
Modifier and Type | Method and Description |
---|---|
DecreaseReplicaCountRequest.Builder |
applyImmediately(Boolean applyImmediately)
If
True , the number of replica nodes is decreased immediately. |
DecreaseReplicaCountRequest.Builder |
newReplicaCount(Integer newReplicaCount)
The number of read replica nodes you want at the completion of this operation.
|
DecreaseReplicaCountRequest.Builder |
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
Add an optional request override configuration.
|
DecreaseReplicaCountRequest.Builder |
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
Add an optional request override configuration.
|
DecreaseReplicaCountRequest.Builder |
replicaConfiguration(Collection<ConfigureShard> replicaConfiguration)
A list of
ConfigureShard objects that can be used to configure each shard in a Redis (cluster
mode enabled) replication group. |
DecreaseReplicaCountRequest.Builder |
replicaConfiguration(ConfigureShard... replicaConfiguration)
A list of
ConfigureShard objects that can be used to configure each shard in a Redis (cluster
mode enabled) replication group. |
DecreaseReplicaCountRequest.Builder |
replicaConfiguration(Consumer<ConfigureShard.Builder>... replicaConfiguration)
A list of
ConfigureShard objects that can be used to configure each shard in a Redis (cluster
mode enabled) replication group. |
DecreaseReplicaCountRequest.Builder |
replicasToRemove(Collection<String> replicasToRemove)
A list of the node ids to remove from the replication group or node group (shard).
|
DecreaseReplicaCountRequest.Builder |
replicasToRemove(String... replicasToRemove)
A list of the node ids to remove from the replication group or node group (shard).
|
DecreaseReplicaCountRequest.Builder |
replicationGroupId(String replicationGroupId)
The id of the replication group from which you want to remove replica nodes.
|
build
overrideConfiguration
copy
applyMutation, build
DecreaseReplicaCountRequest.Builder replicationGroupId(String replicationGroupId)
The id of the replication group from which you want to remove replica nodes.
replicationGroupId
- The id of the replication group from which you want to remove replica nodes.DecreaseReplicaCountRequest.Builder newReplicaCount(Integer newReplicaCount)
The number of read replica nodes you want at the completion of this operation. For Redis (cluster mode disabled) replication groups, this is the number of replica nodes in the replication group. For Redis (cluster mode enabled) replication groups, this is the number of replica nodes in each of the replication group's node groups.
The minimum number of replicas in a shard or replication group is:
Redis (cluster mode disabled)
If Multi-AZ with Automatic Failover is enabled: 1
If Multi-AZ with Automatic Failover is not enabled: 0
Redis (cluster mode enabled): 0 (though you will not be able to failover to a replica if your primary node fails)
newReplicaCount
- The number of read replica nodes you want at the completion of this operation. For Redis (cluster mode
disabled) replication groups, this is the number of replica nodes in the replication group. For Redis
(cluster mode enabled) replication groups, this is the number of replica nodes in each of the
replication group's node groups.
The minimum number of replicas in a shard or replication group is:
Redis (cluster mode disabled)
If Multi-AZ with Automatic Failover is enabled: 1
If Multi-AZ with Automatic Failover is not enabled: 0
Redis (cluster mode enabled): 0 (though you will not be able to failover to a replica if your primary node fails)
DecreaseReplicaCountRequest.Builder replicaConfiguration(Collection<ConfigureShard> replicaConfiguration)
A list of ConfigureShard
objects that can be used to configure each shard in a Redis (cluster
mode enabled) replication group. The ConfigureShard
has three members:
NewReplicaCount
, NodeGroupId
, and PreferredAvailabilityZones
.
replicaConfiguration
- A list of ConfigureShard
objects that can be used to configure each shard in a Redis
(cluster mode enabled) replication group. The ConfigureShard
has three members:
NewReplicaCount
, NodeGroupId
, and PreferredAvailabilityZones
.DecreaseReplicaCountRequest.Builder replicaConfiguration(ConfigureShard... replicaConfiguration)
A list of ConfigureShard
objects that can be used to configure each shard in a Redis (cluster
mode enabled) replication group. The ConfigureShard
has three members:
NewReplicaCount
, NodeGroupId
, and PreferredAvailabilityZones
.
replicaConfiguration
- A list of ConfigureShard
objects that can be used to configure each shard in a Redis
(cluster mode enabled) replication group. The ConfigureShard
has three members:
NewReplicaCount
, NodeGroupId
, and PreferredAvailabilityZones
.DecreaseReplicaCountRequest.Builder replicaConfiguration(Consumer<ConfigureShard.Builder>... replicaConfiguration)
A list of ConfigureShard
objects that can be used to configure each shard in a Redis (cluster
mode enabled) replication group. The ConfigureShard
has three members:
NewReplicaCount
, NodeGroupId
, and PreferredAvailabilityZones
.
List.Builder
avoiding the need
to create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately and
its result is passed to #replicaConfiguration(List)
.replicaConfiguration
- a consumer that will call methods on List.Builder
#replicaConfiguration(List)
DecreaseReplicaCountRequest.Builder replicasToRemove(Collection<String> replicasToRemove)
A list of the node ids to remove from the replication group or node group (shard).
replicasToRemove
- A list of the node ids to remove from the replication group or node group (shard).DecreaseReplicaCountRequest.Builder replicasToRemove(String... replicasToRemove)
A list of the node ids to remove from the replication group or node group (shard).
replicasToRemove
- A list of the node ids to remove from the replication group or node group (shard).DecreaseReplicaCountRequest.Builder applyImmediately(Boolean applyImmediately)
If True
, the number of replica nodes is decreased immediately. If False
, the number
of replica nodes is decreased during the next maintenance window.
applyImmediately
- If True
, the number of replica nodes is decreased immediately. If False
, the
number of replica nodes is decreased during the next maintenance window.DecreaseReplicaCountRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
AwsRequest.Builder
overrideConfiguration
in interface AwsRequest.Builder
overrideConfiguration
- The override configuration.DecreaseReplicaCountRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
AwsRequest.Builder
overrideConfiguration
in interface AwsRequest.Builder
builderConsumer
- A Consumer
to which an empty AwsRequestOverrideConfiguration.Builder
will be
given.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.