Struct rusoto_elasticache::CreateCacheParameterGroupMessage[][src]

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

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

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

A user-specified name for the cache parameter group.

A user-specified description for the cache parameter group.

Trait Implementations

impl Default for CreateCacheParameterGroupMessage
[src]

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

impl Debug for CreateCacheParameterGroupMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateCacheParameterGroupMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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