Struct rusoto_dax::ParameterGroupStatus[][src]

pub struct ParameterGroupStatus {
    pub node_ids_to_reboot: Option<Vec<String>>,
    pub parameter_apply_status: Option<String>,
    pub parameter_group_name: Option<String>,
}

The status of a parameter group.

Fields

The node IDs of one or more nodes to be rebooted.

The status of parameter updates.

The name of the parameter group.

Trait Implementations

impl Default for ParameterGroupStatus
[src]

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

impl Debug for ParameterGroupStatus
[src]

Formats the value using the given formatter. Read more

impl Clone for ParameterGroupStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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