#[non_exhaustive]pub struct GetBasePathMappingInput {
pub domain_name: Option<String>,
pub base_path: Option<String>,
}
Expand description
Request to describe a BasePathMapping resource.
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.domain_name: Option<String>
The domain name of the BasePathMapping resource to be described.
base_path: Option<String>
The base path name that callers of the API must provide as part of the URL after the domain name. This value must be unique for all of the mappings across a single API. Specify '(none)' if you do not want callers to specify any base path name after the domain name.
Implementations§
source§impl GetBasePathMappingInput
impl GetBasePathMappingInput
sourcepub fn domain_name(&self) -> Option<&str>
pub fn domain_name(&self) -> Option<&str>
The domain name of the BasePathMapping resource to be described.
sourcepub fn base_path(&self) -> Option<&str>
pub fn base_path(&self) -> Option<&str>
The base path name that callers of the API must provide as part of the URL after the domain name. This value must be unique for all of the mappings across a single API. Specify '(none)' if you do not want callers to specify any base path name after the domain name.
source§impl GetBasePathMappingInput
impl GetBasePathMappingInput
sourcepub fn builder() -> GetBasePathMappingInputBuilder
pub fn builder() -> GetBasePathMappingInputBuilder
Creates a new builder-style object to manufacture GetBasePathMappingInput
.
Trait Implementations§
source§impl Clone for GetBasePathMappingInput
impl Clone for GetBasePathMappingInput
source§fn clone(&self) -> GetBasePathMappingInput
fn clone(&self) -> GetBasePathMappingInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetBasePathMappingInput
impl Debug for GetBasePathMappingInput
source§impl PartialEq for GetBasePathMappingInput
impl PartialEq for GetBasePathMappingInput
source§fn eq(&self, other: &GetBasePathMappingInput) -> bool
fn eq(&self, other: &GetBasePathMappingInput) -> bool
self
and other
values to be equal, and is used
by ==
.