[][src]Struct rusoto_elasticache::CacheParameterGroup

pub struct CacheParameterGroup {
    pub arn: Option<String>,
    pub cache_parameter_group_family: Option<String>,
    pub cache_parameter_group_name: Option<String>,
    pub description: Option<String>,
    pub is_global: Option<bool>,
}

Represents the output of a CreateCacheParameterGroup operation.

Fields

arn: Option<String>

The ARN (Amazon Resource Name) of the cache parameter group.

cache_parameter_group_family: Option<String>

The name of the cache parameter group family that this cache parameter group is compatible with.

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

cache_parameter_group_name: Option<String>

The name of the cache parameter group.

description: Option<String>

The description for this cache parameter group.

is_global: Option<bool>

Indicates whether the parameter group is associated with a Global Datastore

Trait Implementations

impl Clone for CacheParameterGroup[src]

impl Debug for CacheParameterGroup[src]

impl Default for CacheParameterGroup[src]

impl PartialEq<CacheParameterGroup> for CacheParameterGroup[src]

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