[][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 Clone for VpcPeeringConnection[src]

impl Debug for VpcPeeringConnection[src]

impl Default for VpcPeeringConnection[src]

impl PartialEq<VpcPeeringConnection> for VpcPeeringConnection[src]

impl StructuralPartialEq for VpcPeeringConnection[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.