Struct rusoto_ec2::InternetGatewayAttachment[][src]

pub struct InternetGatewayAttachment {
    pub state: Option<String>,
    pub vpc_id: Option<String>,
}

Describes the attachment of a VPC to an Internet gateway or an egress-only Internet gateway.

Fields

The current state of the attachment. For an Internet gateway, the state is available when attached to a VPC; otherwise, this value is not returned.

The ID of the VPC.

Trait Implementations

impl Default for InternetGatewayAttachment
[src]

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

impl Debug for InternetGatewayAttachment
[src]

Formats the value using the given formatter. Read more

impl Clone for InternetGatewayAttachment
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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