Struct aws_sdk_apigateway::model::EndpointConfiguration [−][src]
#[non_exhaustive]pub struct EndpointConfiguration {
pub types: Option<Vec<EndpointType>>,
pub vpc_endpoint_ids: Option<Vec<String>>,
}
Expand description
The endpoint configuration to indicate the types of endpoints an API (RestApi
) or its custom domain name (DomainName
) has.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.types: Option<Vec<EndpointType>>
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.
Implementations
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
.
Creates a new builder-style object to manufacture EndpointConfiguration
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for EndpointConfiguration
impl Send for EndpointConfiguration
impl Sync for EndpointConfiguration
impl Unpin for EndpointConfiguration
impl UnwindSafe for EndpointConfiguration
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more