Struct rusoto_ec2::InternetGateway[][src]

pub struct InternetGateway {
    pub attachments: Option<Vec<InternetGatewayAttachment>>,
    pub internet_gateway_id: Option<String>,
    pub tags: Option<Vec<Tag>>,
}

Describes an Internet gateway.

Fields

Any VPCs attached to the Internet gateway.

The ID of the Internet gateway.

Any tags assigned to the Internet gateway.

Trait Implementations

impl Default for InternetGateway
[src]

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

impl Debug for InternetGateway
[src]

Formats the value using the given formatter. Read more

impl Clone for InternetGateway
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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