[][src]Struct rusoto_apigateway::EndpointConfiguration

pub struct EndpointConfiguration {
    pub types: Option<Vec<String>>,
    pub vpc_endpoint_ids: Option<Vec<String>>,
}

The endpoint configuration to indicate the types of endpoints an API (RestApi) or its custom domain name (DomainName) has.

Fields

types: Option<Vec<String>>

A list of endpoint types of an API (RestApi) or its custom domain name (DomainName). For an edge-optimized API and its custom domain name, the endpoint type is "EDGE". For a regional API and its custom domain name, the endpoint type is REGIONAL. For a private API, the endpoint type is PRIVATE.

vpc_endpoint_ids: Option<Vec<String>>

A list of VpcEndpointIds of an API (RestApi) against which to create Route53 ALIASes. It is only supported for PRIVATE endpoint type.

Trait Implementations

impl Clone for EndpointConfiguration[src]

impl Debug for EndpointConfiguration[src]

impl Default for EndpointConfiguration[src]

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

impl PartialEq<EndpointConfiguration> for EndpointConfiguration[src]

impl Serialize for EndpointConfiguration[src]

impl StructuralPartialEq for EndpointConfiguration[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.