Struct rusoto_elasticache::CacheParameterGroupStatus[][src]

pub struct CacheParameterGroupStatus {
    pub cache_node_ids_to_reboot: Option<Vec<String>>,
    pub cache_parameter_group_name: Option<String>,
    pub parameter_apply_status: Option<String>,
}

Status of the cache parameter group.

Fields

A list of the cache node IDs which need to be rebooted for parameter changes to be applied. A node ID is a numeric identifier (0001, 0002, etc.).

The name of the cache parameter group.

The status of parameter updates.

Trait Implementations

impl Default for CacheParameterGroupStatus
[src]

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

impl Debug for CacheParameterGroupStatus
[src]

Formats the value using the given formatter. Read more

impl Clone for CacheParameterGroupStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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