Struct rusoto_elasticache::RebootCacheClusterMessage [] [src]

pub struct RebootCacheClusterMessage {
    pub cache_cluster_id: String,
    pub cache_node_ids_to_reboot: Vec<String>,
}

Represents the input of a RebootCacheCluster operation.

Fields

The cluster identifier. This parameter is stored as a lowercase string.

A list of cache node IDs to reboot. A node ID is a numeric identifier (0001, 0002, etc.). To reboot an entire cluster, specify all of the cache node IDs.

Trait Implementations

impl Default for RebootCacheClusterMessage
[src]

[src]

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

impl Debug for RebootCacheClusterMessage
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for RebootCacheClusterMessage
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations