Struct aws_sdk_dax::operation::increase_replication_factor::builders::IncreaseReplicationFactorFluentBuilder
source · pub struct IncreaseReplicationFactorFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to IncreaseReplicationFactor
.
Adds one or more nodes to a DAX cluster.
Implementations§
source§impl IncreaseReplicationFactorFluentBuilder
impl IncreaseReplicationFactorFluentBuilder
sourcepub fn as_input(&self) -> &IncreaseReplicationFactorInputBuilder
pub fn as_input(&self) -> &IncreaseReplicationFactorInputBuilder
Access the IncreaseReplicationFactor as a reference.
sourcepub async fn send(
self
) -> Result<IncreaseReplicationFactorOutput, SdkError<IncreaseReplicationFactorError, HttpResponse>>
pub async fn send( self ) -> Result<IncreaseReplicationFactorOutput, SdkError<IncreaseReplicationFactorError, HttpResponse>>
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 customize(
self
) -> CustomizableOperation<IncreaseReplicationFactorOutput, IncreaseReplicationFactorError, Self>
pub fn customize( self ) -> CustomizableOperation<IncreaseReplicationFactorOutput, IncreaseReplicationFactorError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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 get_cluster_name(&self) -> &Option<String>
pub fn get_cluster_name(&self) -> &Option<String>
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 get_new_replication_factor(&self) -> &Option<i32>
pub fn get_new_replication_factor(&self) -> &Option<i32>
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.
sourcepub fn get_availability_zones(&self) -> &Option<Vec<String>>
pub fn get_availability_zones(&self) -> &Option<Vec<String>>
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 IncreaseReplicationFactorFluentBuilder
impl Clone for IncreaseReplicationFactorFluentBuilder
source§fn clone(&self) -> IncreaseReplicationFactorFluentBuilder
fn clone(&self) -> IncreaseReplicationFactorFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more