[][src]Struct rusoto_apigatewayv2::GetVpcLinkResponse

pub struct GetVpcLinkResponse {
    pub created_date: Option<f64>,
    pub name: Option<String>,
    pub security_group_ids: Option<Vec<String>>,
    pub subnet_ids: Option<Vec<String>>,
    pub tags: Option<HashMap<String, String>>,
    pub vpc_link_id: Option<String>,
    pub vpc_link_status: Option<String>,
    pub vpc_link_status_message: Option<String>,
    pub vpc_link_version: Option<String>,
}

Fields

created_date: Option<f64>

The timestamp when the VPC link was created.

name: Option<String>

The name of the VPC link.

security_group_ids: Option<Vec<String>>

A list of security group IDs for the VPC link.

subnet_ids: Option<Vec<String>>

A list of subnet IDs to include in the VPC link.

tags: Option<HashMap<String, String>>

Tags for the VPC link.

vpc_link_id: Option<String>

The ID of the VPC link.

vpc_link_status: Option<String>

The status of the VPC link.

vpc_link_status_message: Option<String>

A message summarizing the cause of the status of the VPC link.

vpc_link_version: Option<String>

The version of the VPC link.

Trait Implementations

impl Clone for GetVpcLinkResponse[src]

impl Debug for GetVpcLinkResponse[src]

impl Default for GetVpcLinkResponse[src]

impl<'de> Deserialize<'de> for GetVpcLinkResponse[src]

impl PartialEq<GetVpcLinkResponse> for GetVpcLinkResponse[src]

impl StructuralPartialEq for GetVpcLinkResponse[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.