[][src]Struct rusoto_ec2::VpcPeeringConnection

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

accepter_vpc_info: Option<VpcPeeringConnectionVpcInfo>

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

expiration_time: Option<String>

The time that an unaccepted VPC peering connection will expire.

requester_vpc_info: Option<VpcPeeringConnectionVpcInfo>

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

status: Option<VpcPeeringConnectionStateReason>

The status of the VPC peering connection.

tags: Option<Vec<Tag>>

Any tags assigned to the resource.

vpc_peering_connection_id: Option<String>

The ID of the VPC peering connection.

Trait Implementations

impl PartialEq<VpcPeeringConnection> for VpcPeeringConnection[src]

impl Default for VpcPeeringConnection[src]

impl Clone for VpcPeeringConnection[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for VpcPeeringConnection[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self