Struct rusoto_dax::DecreaseReplicationFactorRequest[][src]

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

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

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

The new number of nodes for the DAX cluster.

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

Trait Implementations

impl Default for DecreaseReplicationFactorRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for DecreaseReplicationFactorRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DecreaseReplicationFactorRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DecreaseReplicationFactorRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations