pub struct IncreaseReplicationFactor { /* private fields */ }
Expand description
Fluent builder constructing a request to IncreaseReplicationFactor
.
Adds one or more nodes to a DAX cluster.
Implementations§
source§impl IncreaseReplicationFactor
impl IncreaseReplicationFactor
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<IncreaseReplicationFactor, AwsResponseRetryClassifier>, SdkError<IncreaseReplicationFactorError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<IncreaseReplicationFactor, AwsResponseRetryClassifier>, SdkError<IncreaseReplicationFactorError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<IncreaseReplicationFactorOutput, SdkError<IncreaseReplicationFactorError>>
pub async fn send(
self
) -> Result<IncreaseReplicationFactorOutput, SdkError<IncreaseReplicationFactorError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn cluster_name(self, input: impl Into<String>) -> Self
pub fn cluster_name(self, input: impl Into<String>) -> Self
The name of the DAX cluster that will receive additional nodes.
sourcepub fn set_cluster_name(self, input: Option<String>) -> Self
pub fn set_cluster_name(self, input: Option<String>) -> Self
The name of the DAX cluster that will receive additional nodes.
sourcepub fn new_replication_factor(self, input: i32) -> Self
pub fn new_replication_factor(self, input: i32) -> Self
The new number of nodes for the DAX cluster.
sourcepub fn set_new_replication_factor(self, input: Option<i32>) -> Self
pub fn set_new_replication_factor(self, input: Option<i32>) -> Self
The new number of nodes for the DAX cluster.
sourcepub fn availability_zones(self, input: impl Into<String>) -> Self
pub fn availability_zones(self, input: impl Into<String>) -> Self
Appends an item to AvailabilityZones
.
To override the contents of this collection use set_availability_zones
.
The Availability Zones (AZs) in which the cluster nodes will be created. All nodes belonging to the cluster are placed in these Availability Zones. Use this parameter if you want to distribute the nodes across multiple AZs.
sourcepub fn set_availability_zones(self, input: Option<Vec<String>>) -> Self
pub fn set_availability_zones(self, input: Option<Vec<String>>) -> Self
The Availability Zones (AZs) in which the cluster nodes will be created. All nodes belonging to the cluster are placed in these Availability Zones. Use this parameter if you want to distribute the nodes across multiple AZs.
Trait Implementations§
source§impl Clone for IncreaseReplicationFactor
impl Clone for IncreaseReplicationFactor
source§fn clone(&self) -> IncreaseReplicationFactor
fn clone(&self) -> IncreaseReplicationFactor
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more