[][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>>,
}

An 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 ARN of the network load balancer of the VPC targeted by the VPC link. The network load balancer must be owned by the same AWS account of the API owner.

Trait Implementations

impl Clone for VpcLink[src]

impl Debug for VpcLink[src]

impl Default for VpcLink[src]

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

impl PartialEq<VpcLink> for VpcLink[src]

impl StructuralPartialEq for VpcLink[src]

Auto Trait Implementations

impl RefUnwindSafe for VpcLink

impl Send for VpcLink

impl Sync for VpcLink

impl Unpin for VpcLink

impl UnwindSafe for VpcLink

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, 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> Sealed<T> for T where
    T: ?Sized

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.