[][src]Struct rusoto_elasticache::CreateCacheParameterGroupMessage

pub struct CreateCacheParameterGroupMessage {
    pub cache_parameter_group_family: String,
    pub cache_parameter_group_name: String,
    pub description: String,
}

Represents the input of a CreateCacheParameterGroup operation.

Fields

cache_parameter_group_family: String

The name of the cache parameter group family that the cache parameter group can be used with.

Valid values are: memcached1.4 | memcached1.5 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 |

cache_parameter_group_name: String

A user-specified name for the cache parameter group.

description: String

A user-specified description for the cache parameter group.

Trait Implementations

impl Clone for CreateCacheParameterGroupMessage[src]

impl Debug for CreateCacheParameterGroupMessage[src]

impl Default for CreateCacheParameterGroupMessage[src]

impl PartialEq<CreateCacheParameterGroupMessage> for CreateCacheParameterGroupMessage[src]

impl StructuralPartialEq for CreateCacheParameterGroupMessage[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.