Struct rusoto_ec2::SecurityGroupReference[][src]

pub struct SecurityGroupReference {
    pub group_id: String,
    pub referencing_vpc_id: String,
    pub vpc_peering_connection_id: Option<String>,
}

Describes a VPC with a security group that references your security group.

Fields

The ID of your security group.

The ID of the VPC with the referencing security group.

The ID of the VPC peering connection.

Trait Implementations

impl Default for SecurityGroupReference
[src]

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

impl Debug for SecurityGroupReference
[src]

Formats the value using the given formatter. Read more

impl Clone for SecurityGroupReference
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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