Struct aws_sdk_dax::operation::decrease_replication_factor::builders::DecreaseReplicationFactorFluentBuilder
source · pub struct DecreaseReplicationFactorFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to DecreaseReplicationFactor
.
Removes one or more nodes from a DAX cluster.
You cannot use DecreaseReplicationFactor
to remove the last node in a DAX cluster. If you need to do this, use DeleteCluster
instead.
Implementations§
source§impl DecreaseReplicationFactorFluentBuilder
impl DecreaseReplicationFactorFluentBuilder
sourcepub fn as_input(&self) -> &DecreaseReplicationFactorInputBuilder
pub fn as_input(&self) -> &DecreaseReplicationFactorInputBuilder
Access the DecreaseReplicationFactor as a reference.
sourcepub async fn send(
self,
) -> Result<DecreaseReplicationFactorOutput, SdkError<DecreaseReplicationFactorError, HttpResponse>>
pub async fn send( self, ) -> Result<DecreaseReplicationFactorOutput, SdkError<DecreaseReplicationFactorError, 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<DecreaseReplicationFactorOutput, DecreaseReplicationFactorError, Self>
pub fn customize( self, ) -> CustomizableOperation<DecreaseReplicationFactorOutput, DecreaseReplicationFactorError, 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 from which you want to remove 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 from which you want to remove nodes.
sourcepub fn get_cluster_name(&self) -> &Option<String>
pub fn get_cluster_name(&self) -> &Option<String>
The name of the DAX cluster from which you want to remove 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 Zone(s) from which to remove nodes.
sourcepub fn set_availability_zones(self, input: Option<Vec<String>>) -> Self
pub fn set_availability_zones(self, input: Option<Vec<String>>) -> Self
The Availability Zone(s) from which to remove nodes.
sourcepub fn get_availability_zones(&self) -> &Option<Vec<String>>
pub fn get_availability_zones(&self) -> &Option<Vec<String>>
The Availability Zone(s) from which to remove nodes.
sourcepub fn node_ids_to_remove(self, input: impl Into<String>) -> Self
pub fn node_ids_to_remove(self, input: impl Into<String>) -> Self
Appends an item to NodeIdsToRemove
.
To override the contents of this collection use set_node_ids_to_remove
.
The unique identifiers of the nodes to be removed from the cluster.
sourcepub fn set_node_ids_to_remove(self, input: Option<Vec<String>>) -> Self
pub fn set_node_ids_to_remove(self, input: Option<Vec<String>>) -> Self
The unique identifiers of the nodes to be removed from the cluster.
sourcepub fn get_node_ids_to_remove(&self) -> &Option<Vec<String>>
pub fn get_node_ids_to_remove(&self) -> &Option<Vec<String>>
The unique identifiers of the nodes to be removed from the cluster.
Trait Implementations§
source§impl Clone for DecreaseReplicationFactorFluentBuilder
impl Clone for DecreaseReplicationFactorFluentBuilder
source§fn clone(&self) -> DecreaseReplicationFactorFluentBuilder
fn clone(&self) -> DecreaseReplicationFactorFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl Freeze for DecreaseReplicationFactorFluentBuilder
impl !RefUnwindSafe for DecreaseReplicationFactorFluentBuilder
impl Send for DecreaseReplicationFactorFluentBuilder
impl Sync for DecreaseReplicationFactorFluentBuilder
impl Unpin for DecreaseReplicationFactorFluentBuilder
impl !UnwindSafe for DecreaseReplicationFactorFluentBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more