Struct rusoto_elasticache::EC2SecurityGroup[][src]

pub struct EC2SecurityGroup {
    pub ec2_security_group_name: Option<String>,
    pub ec2_security_group_owner_id: Option<String>,
    pub status: Option<String>,
}

Provides ownership and status information for an Amazon EC2 security group.

Fields

The name of the Amazon EC2 security group.

The AWS account ID of the Amazon EC2 security group owner.

The status of the Amazon EC2 security group.

Trait Implementations

impl Default for EC2SecurityGroup
[src]

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

impl Debug for EC2SecurityGroup
[src]

Formats the value using the given formatter. Read more

impl Clone for EC2SecurityGroup
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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