Struct rusoto_elasticache::CacheParameterGroup[][src]

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

Represents the output of a CreateCacheParameterGroup operation.

Fields

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

Valid values are: memcached1.4 | redis2.6 | redis2.8 | redis3.2

The name of the cache parameter group.

The description for this cache parameter group.

Trait Implementations

impl Default for CacheParameterGroup
[src]

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

impl Debug for CacheParameterGroup
[src]

Formats the value using the given formatter. Read more

impl Clone for CacheParameterGroup
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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