Struct rusoto_elasticache::NodeGroupConfiguration [] [src]

pub struct NodeGroupConfiguration {
    pub primary_availability_zone: Option<String>,
    pub replica_availability_zones: Option<Vec<String>>,
    pub replica_count: Option<i64>,
    pub slots: Option<String>,
}

Node group (shard) configuration options. Each node group (shard) configuration has the following: Slots, PrimaryAvailabilityZone, ReplicaAvailabilityZones, ReplicaCount.

Fields

The Availability Zone where the primary node of this node group (shard) is launched.

A list of Availability Zones to be used for the read replicas. The number of Availability Zones in this list must match the value of ReplicaCount or ReplicasPerNodeGroup if not specified.

The number of read replica nodes in this node group (shard).

A string that specifies the keyspace for a particular node group. Keyspaces range from 0 to 16,383. The string is in the format startkey-endkey.

Example: "0-3999"

Trait Implementations

impl Default for NodeGroupConfiguration
[src]

[src]

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

impl Debug for NodeGroupConfiguration
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for NodeGroupConfiguration
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations