Struct rusoto_ec2::VpcPeeringConnection[][src]

pub struct VpcPeeringConnection {
    pub accepter_vpc_info: Option<VpcPeeringConnectionVpcInfo>,
    pub expiration_time: Option<String>,
    pub requester_vpc_info: Option<VpcPeeringConnectionVpcInfo>,
    pub status: Option<VpcPeeringConnectionStateReason>,
    pub tags: Option<Vec<Tag>>,
    pub vpc_peering_connection_id: Option<String>,
}

Describes a VPC peering connection.

Fields

Information about the accepter VPC. CIDR block information is only returned when describing an active VPC peering connection.

The time that an unaccepted VPC peering connection will expire.

Information about the requester VPC. CIDR block information is only returned when describing an active VPC peering connection.

The status of the VPC peering connection.

Any tags assigned to the resource.

The ID of the VPC peering connection.

Trait Implementations

impl Default for VpcPeeringConnection
[src]

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

impl Debug for VpcPeeringConnection
[src]

Formats the value using the given formatter. Read more

impl Clone for VpcPeeringConnection
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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