[][src]Struct rusoto_dax::Cluster

pub struct Cluster {
    pub active_nodes: Option<i64>,
    pub cluster_arn: Option<String>,
    pub cluster_discovery_endpoint: Option<Endpoint>,
    pub cluster_name: Option<String>,
    pub description: Option<String>,
    pub iam_role_arn: Option<String>,
    pub node_ids_to_remove: Option<Vec<String>>,
    pub node_type: Option<String>,
    pub nodes: Option<Vec<Node>>,
    pub notification_configuration: Option<NotificationConfiguration>,
    pub parameter_group: Option<ParameterGroupStatus>,
    pub preferred_maintenance_window: Option<String>,
    pub security_groups: Option<Vec<SecurityGroupMembership>>,
    pub status: Option<String>,
    pub subnet_group: Option<String>,
    pub total_nodes: Option<i64>,
}

Contains all of the attributes of a specific DAX cluster.

Fields

The number of nodes in the cluster that are active (i.e., capable of serving requests).

The Amazon Resource Name (ARN) that uniquely identifies the cluster.

The configuration endpoint for this DAX cluster, consisting of a DNS name and a port number. Client applications can specify this endpoint, rather than an individual node endpoint, and allow the DAX client software to intelligently route requests and responses to nodes in the DAX cluster.

The name of the DAX cluster.

The description of the cluster.

A valid Amazon Resource Name (ARN) that identifies an IAM role. At runtime, DAX will assume this role and use the role's permissions to access DynamoDB on your behalf.

A list of nodes to be removed from the cluster.

The node type for the nodes in the cluster. (All nodes in a DAX cluster are of the same type.)

A list of nodes that are currently in the cluster.

Describes a notification topic and its status. Notification topics are used for publishing DAX events to subscribers using Amazon Simple Notification Service (SNS).

The parameter group being used by nodes in the cluster.

A range of time when maintenance of DAX cluster software will be performed. For example: sun:01:00-sun:09:00. Cluster maintenance normally takes less than 30 minutes, and is performed automatically within the maintenance window.

A list of security groups, and the status of each, for the nodes in the cluster.

The current status of the cluster.

The subnet group where the DAX cluster is running.

The total number of nodes in the cluster.

Trait Implementations

impl PartialEq<Cluster> for Cluster
[src]

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

This method tests for !=.

impl Default for Cluster
[src]

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

impl Clone for Cluster
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Cluster
[src]

Formats the value using the given formatter. Read more

impl<'de> Deserialize<'de> for Cluster
[src]

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations

impl Send for Cluster

impl Sync for Cluster

Blanket Implementations

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

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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

Performs the conversion.

impl<T> From for T
[src]

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

Mutably borrows from an owned value. Read more

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T