Struct aws_sdk_apigateway::output::CreateBasePathMappingOutput [−][src]
#[non_exhaustive]pub struct CreateBasePathMappingOutput {
pub base_path: Option<String>,
pub rest_api_id: Option<String>,
pub stage: Option<String>,
}
Expand description
Represents the base path that callers of the API must provide as part of the URL after the domain name.
BasePathMapping
specification identifies a deployed RestApi
in a given stage of the owner Account
.
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.base_path: Option<String>
The base path name that callers of the API must provide as part of the URL after the domain name.
rest_api_id: Option<String>
The string identifier of the associated RestApi
.
stage: Option<String>
The name of the associated stage.
Implementations
The base path name that callers of the API must provide as part of the URL after the domain name.
The string identifier of the associated RestApi
.
Creates a new builder-style object to manufacture CreateBasePathMappingOutput
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 CreateBasePathMappingOutput
impl Send for CreateBasePathMappingOutput
impl Sync for CreateBasePathMappingOutput
impl Unpin for CreateBasePathMappingOutput
impl UnwindSafe for CreateBasePathMappingOutput
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