Struct rusoto_ec2::ClassicLinkInstance[][src]

pub struct ClassicLinkInstance {
    pub groups: Option<Vec<GroupIdentifier>>,
    pub instance_id: Option<String>,
    pub tags: Option<Vec<Tag>>,
    pub vpc_id: Option<String>,
}

Describes a linked EC2-Classic instance.

Fields

A list of security groups.

The ID of the instance.

Any tags assigned to the instance.

The ID of the VPC.

Trait Implementations

impl Default for ClassicLinkInstance
[src]

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

impl Debug for ClassicLinkInstance
[src]

Formats the value using the given formatter. Read more

impl Clone for ClassicLinkInstance
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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