Struct rusoto_elasticache::CreateCacheSecurityGroupMessage[][src]

pub struct CreateCacheSecurityGroupMessage {
    pub cache_security_group_name: String,
    pub description: String,
}

Represents the input of a CreateCacheSecurityGroup operation.

Fields

A name for the cache security group. This value is stored as a lowercase string.

Constraints: Must contain no more than 255 alphanumeric characters. Cannot be the word "Default".

Example: mysecuritygroup

A description for the cache security group.

Trait Implementations

impl Default for CreateCacheSecurityGroupMessage
[src]

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

impl Debug for CreateCacheSecurityGroupMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateCacheSecurityGroupMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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