Struct rusoto_elasticache::SecurityGroupMembership[][src]

pub struct SecurityGroupMembership {
    pub security_group_id: Option<String>,
    pub status: Option<String>,
}

Represents a single cache security group and its status.

Fields

The identifier of the cache security group.

The status of the cache security group membership. The status changes whenever a cache security group is modified, or when the cache security groups assigned to a cluster are modified.

Trait Implementations

impl Default for SecurityGroupMembership
[src]

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

impl Debug for SecurityGroupMembership
[src]

Formats the value using the given formatter. Read more

impl Clone for SecurityGroupMembership
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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