[][src]Struct rusoto_dax::DecreaseReplicationFactorRequest

pub struct DecreaseReplicationFactorRequest {
    pub availability_zones: Option<Vec<String>>,
    pub cluster_name: String,
    pub new_replication_factor: i64,
    pub node_ids_to_remove: Option<Vec<String>>,
}

Fields

availability_zones: Option<Vec<String>>

The Availability Zone(s) from which to remove nodes.

cluster_name: String

The name of the DAX cluster from which you want to remove nodes.

new_replication_factor: i64

The new number of nodes for the DAX cluster.

node_ids_to_remove: Option<Vec<String>>

The unique identifiers of the nodes to be removed from the cluster.

Trait Implementations

impl Clone for DecreaseReplicationFactorRequest[src]

impl Debug for DecreaseReplicationFactorRequest[src]

impl Default for DecreaseReplicationFactorRequest[src]

impl PartialEq<DecreaseReplicationFactorRequest> for DecreaseReplicationFactorRequest[src]

impl Serialize for DecreaseReplicationFactorRequest[src]

impl StructuralPartialEq for DecreaseReplicationFactorRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.