Struct rusoto_dax::IncreaseReplicationFactorRequest[][src]

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

Fields

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.

The name of the DAX cluster that will receive additional nodes.

The new number of nodes for the DAX cluster.

Trait Implementations

impl Default for IncreaseReplicationFactorRequest
[src]

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

impl Debug for IncreaseReplicationFactorRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for IncreaseReplicationFactorRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for IncreaseReplicationFactorRequest
[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