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]

[src]

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

impl Debug for IncreaseReplicationFactorRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for IncreaseReplicationFactorRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations