Interface DecreaseReplicaCountRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<DecreaseReplicaCountRequest.Builder,DecreaseReplicaCountRequest>
,ElastiCacheRequest.Builder
,SdkBuilder<DecreaseReplicaCountRequest.Builder,DecreaseReplicaCountRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- DecreaseReplicaCountRequest
public static interface DecreaseReplicaCountRequest.Builder extends ElastiCacheRequest.Builder, SdkPojo, CopyableBuilder<DecreaseReplicaCountRequest.Builder,DecreaseReplicaCountRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DecreaseReplicaCountRequest.Builder
applyImmediately(Boolean applyImmediately)
IfTrue
, 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(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
DecreaseReplicaCountRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
DecreaseReplicaCountRequest.Builder
replicaConfiguration(Collection<ConfigureShard> replicaConfiguration)
A list ofConfigureShard
objects that can be used to configure each shard in a Valkey or Redis OSS (cluster mode enabled) replication group.DecreaseReplicaCountRequest.Builder
replicaConfiguration(Consumer<ConfigureShard.Builder>... replicaConfiguration)
A list ofConfigureShard
objects that can be used to configure each shard in a Valkey or Redis OSS (cluster mode enabled) replication group.DecreaseReplicaCountRequest.Builder
replicaConfiguration(ConfigureShard... replicaConfiguration)
A list ofConfigureShard
objects that can be used to configure each shard in a Valkey or Redis OSS (cluster mode enabled) replication group.DecreaseReplicaCountRequest.Builder
replicasToRemove(String... replicasToRemove)
A list of the node ids to remove from the replication group or node group (shard).DecreaseReplicaCountRequest.Builder
replicasToRemove(Collection<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.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.elasticache.model.ElastiCacheRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
replicationGroupId
DecreaseReplicaCountRequest.Builder replicationGroupId(String replicationGroupId)
The id of the replication group from which you want to remove replica nodes.
- Parameters:
replicationGroupId
- The id of the replication group from which you want to remove replica nodes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
newReplicaCount
DecreaseReplicaCountRequest.Builder newReplicaCount(Integer newReplicaCount)
The number of read replica nodes you want at the completion of this operation. For Valkey or Redis OSS (cluster mode disabled) replication groups, this is the number of replica nodes in the replication group. For Valkey or Redis OSS (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:
-
Valkey or Redis OSS (cluster mode disabled)
-
If Multi-AZ is enabled: 1
-
If Multi-AZ is not enabled: 0
-
-
Valkey or Redis OSS (cluster mode enabled): 0 (though you will not be able to failover to a replica if your primary node fails)
- Parameters:
newReplicaCount
- The number of read replica nodes you want at the completion of this operation. For Valkey or Redis OSS (cluster mode disabled) replication groups, this is the number of replica nodes in the replication group. For Valkey or Redis OSS (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:
-
Valkey or Redis OSS (cluster mode disabled)
-
If Multi-AZ is enabled: 1
-
If Multi-AZ is not enabled: 0
-
-
Valkey or Redis OSS (cluster mode enabled): 0 (though you will not be able to failover to a replica if your primary node fails)
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
replicaConfiguration
DecreaseReplicaCountRequest.Builder replicaConfiguration(Collection<ConfigureShard> replicaConfiguration)
A list of
ConfigureShard
objects that can be used to configure each shard in a Valkey or Redis OSS (cluster mode enabled) replication group. TheConfigureShard
has three members:NewReplicaCount
,NodeGroupId
, andPreferredAvailabilityZones
.- Parameters:
replicaConfiguration
- A list ofConfigureShard
objects that can be used to configure each shard in a Valkey or Redis OSS (cluster mode enabled) replication group. TheConfigureShard
has three members:NewReplicaCount
,NodeGroupId
, andPreferredAvailabilityZones
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
replicaConfiguration
DecreaseReplicaCountRequest.Builder replicaConfiguration(ConfigureShard... replicaConfiguration)
A list of
ConfigureShard
objects that can be used to configure each shard in a Valkey or Redis OSS (cluster mode enabled) replication group. TheConfigureShard
has three members:NewReplicaCount
,NodeGroupId
, andPreferredAvailabilityZones
.- Parameters:
replicaConfiguration
- A list ofConfigureShard
objects that can be used to configure each shard in a Valkey or Redis OSS (cluster mode enabled) replication group. TheConfigureShard
has three members:NewReplicaCount
,NodeGroupId
, andPreferredAvailabilityZones
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
replicaConfiguration
DecreaseReplicaCountRequest.Builder replicaConfiguration(Consumer<ConfigureShard.Builder>... replicaConfiguration)
A list of
This is a convenience method that creates an instance of theConfigureShard
objects that can be used to configure each shard in a Valkey or Redis OSS (cluster mode enabled) replication group. TheConfigureShard
has three members:NewReplicaCount
,NodeGroupId
, andPreferredAvailabilityZones
.ConfigureShard.Builder
avoiding the need to create one manually viaConfigureShard.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#replicaConfiguration(List
.) - Parameters:
replicaConfiguration
- a consumer that will call methods onConfigureShard.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#replicaConfiguration(java.util.Collection
)
-
replicasToRemove
DecreaseReplicaCountRequest.Builder replicasToRemove(Collection<String> replicasToRemove)
A list of the node ids to remove from the replication group or node group (shard).
- Parameters:
replicasToRemove
- A list of the node ids to remove from the replication group or node group (shard).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
replicasToRemove
DecreaseReplicaCountRequest.Builder replicasToRemove(String... replicasToRemove)
A list of the node ids to remove from the replication group or node group (shard).
- Parameters:
replicasToRemove
- A list of the node ids to remove from the replication group or node group (shard).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applyImmediately
DecreaseReplicaCountRequest.Builder applyImmediately(Boolean applyImmediately)
If
True
, the number of replica nodes is decreased immediately.ApplyImmediately=False
is not currently supported.- Parameters:
applyImmediately
- IfTrue
, the number of replica nodes is decreased immediately.ApplyImmediately=False
is not currently supported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
DecreaseReplicaCountRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
DecreaseReplicaCountRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-