[][src]Struct rusoto_apigateway::VpcLink

pub struct VpcLink {
    pub description: Option<String>,
    pub id: Option<String>,
    pub name: Option<String>,
    pub status: Option<String>,
    pub status_message: Option<String>,
    pub tags: Option<HashMap<String, String>>,
    pub target_arns: Option<Vec<String>>,
}

A API Gateway VPC link for a RestApi to access resources in an Amazon Virtual Private Cloud (VPC).

To enable access to a resource in an Amazon Virtual Private Cloud through Amazon API Gateway, you, as an API developer, create a VpcLink resource targeted for one or more network load balancers of the VPC and then integrate an API method with a private integration that uses the VpcLink. The private integration has an integration type of HTTP or HTTPPROXY and has a connection type of VPCLINK. The integration uses the connectionId property to identify the VpcLink used.

Fields

description: Option<String>

The description of the VPC link.

id: Option<String>

The identifier of the VpcLink. It is used in an Integration to reference this VpcLink.

name: Option<String>

The name used to label and identify the VPC link.

status: Option<String>

The status of the VPC link. The valid values are AVAILABLE, PENDING, DELETING, or FAILED. Deploying an API will wait if the status is PENDING and will fail if the status is DELETING.

status_message: Option<String>

A description about the VPC link status.

tags: Option<HashMap<String, String>>

The collection of tags. Each tag element is associated with a given resource.

target_arns: Option<Vec<String>>

The ARNs of network load balancers of the VPC targeted by the VPC link. The network load balancers must be owned by the same AWS account of the API owner.

Trait Implementations

impl PartialEq<VpcLink> for VpcLink[src]

impl Default for VpcLink[src]

impl Clone for VpcLink[src]

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

Performs copy-assignment from source. Read more

impl Debug for VpcLink[src]

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

Auto Trait Implementations

impl Send for VpcLink

impl Sync for VpcLink

Blanket Implementations

impl<T> From for T[src]

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, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self