Struct rusoto_ec2::VpcClassicLink[][src]

pub struct VpcClassicLink {
    pub classic_link_enabled: Option<bool>,
    pub tags: Option<Vec<Tag>>,
    pub vpc_id: Option<String>,
}

Describes whether a VPC is enabled for ClassicLink.

Fields

Indicates whether the VPC is enabled for ClassicLink.

Any tags assigned to the VPC.

The ID of the VPC.

Trait Implementations

impl Default for VpcClassicLink
[src]

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

impl Debug for VpcClassicLink
[src]

Formats the value using the given formatter. Read more

impl Clone for VpcClassicLink
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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