[][src]Struct rusoto_elasticache::ResetCacheParameterGroupMessage

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

cache_parameter_group_name: String

The name of the cache parameter group to reset.

parameter_name_values: Option<Vec<ParameterNameValue>>

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.

reset_all_parameters: Option<bool>

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 Clone for ResetCacheParameterGroupMessage[src]

impl Debug for ResetCacheParameterGroupMessage[src]

impl Default for ResetCacheParameterGroupMessage[src]

impl PartialEq<ResetCacheParameterGroupMessage> for ResetCacheParameterGroupMessage[src]

impl StructuralPartialEq for ResetCacheParameterGroupMessage[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.