Struct aws_sdk_dax::operation::decrease_replication_factor::builders::DecreaseReplicationFactorInputBuilder
source · #[non_exhaustive]pub struct DecreaseReplicationFactorInputBuilder { /* private fields */ }
Expand description
A builder for DecreaseReplicationFactorInput
.
Implementations§
source§impl DecreaseReplicationFactorInputBuilder
impl DecreaseReplicationFactorInputBuilder
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.
This field is required.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.
This field is required.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 availability_zones
.
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 node_ids_to_remove
.
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.
sourcepub fn build(self) -> Result<DecreaseReplicationFactorInput, BuildError>
pub fn build(self) -> Result<DecreaseReplicationFactorInput, BuildError>
Consumes the builder and constructs a DecreaseReplicationFactorInput
.
source§impl DecreaseReplicationFactorInputBuilder
impl DecreaseReplicationFactorInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<DecreaseReplicationFactorOutput, SdkError<DecreaseReplicationFactorError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<DecreaseReplicationFactorOutput, SdkError<DecreaseReplicationFactorError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DecreaseReplicationFactorInputBuilder
impl Clone for DecreaseReplicationFactorInputBuilder
source§fn clone(&self) -> DecreaseReplicationFactorInputBuilder
fn clone(&self) -> DecreaseReplicationFactorInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DecreaseReplicationFactorInputBuilder
impl Default for DecreaseReplicationFactorInputBuilder
source§fn default() -> DecreaseReplicationFactorInputBuilder
fn default() -> DecreaseReplicationFactorInputBuilder
source§impl PartialEq for DecreaseReplicationFactorInputBuilder
impl PartialEq for DecreaseReplicationFactorInputBuilder
source§fn eq(&self, other: &DecreaseReplicationFactorInputBuilder) -> bool
fn eq(&self, other: &DecreaseReplicationFactorInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.