Struct rusoto_elasticache::ResetCacheParameterGroupMessage[][src]

pub struct ResetCacheParameterGroupMessage {
    pub cache_parameter_group_name: String,
    pub parameter_name_values: Option<Vec<ParameterNameValue>>,
    pub reset_all_parameters: Option<bool>,
}

Represents the input of a ResetCacheParameterGroup operation.

Fields

The name of the cache parameter group to reset.

An array of parameter names to reset to their default values. If ResetAllParameters is true, do not use ParameterNameValues. If ResetAllParameters is false, you must specify the name of at least one parameter to reset.

If true, all parameters in the cache parameter group are reset to their default values. If false, only the parameters listed by ParameterNameValues are reset to their default values.

Valid values: true | false

Trait Implementations

impl Default for ResetCacheParameterGroupMessage
[src]

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

impl Debug for ResetCacheParameterGroupMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for ResetCacheParameterGroupMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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