#[non_exhaustive]pub struct CreateBasePathMappingInput { /* private fields */ }Expand description
Requests API Gateway to create a new BasePathMapping resource.
Implementations
sourceimpl CreateBasePathMappingInput
impl CreateBasePathMappingInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateBasePathMapping, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateBasePathMapping, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateBasePathMapping>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateBasePathMappingInput.
sourceimpl CreateBasePathMappingInput
impl CreateBasePathMappingInput
sourcepub fn domain_name(&self) -> Option<&str>
pub fn domain_name(&self) -> Option<&str>
The domain name of the BasePathMapping resource to create.
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 a base path name after the domain name.
sourcepub fn rest_api_id(&self) -> Option<&str>
pub fn rest_api_id(&self) -> Option<&str>
The string identifier of the associated RestApi.
Trait Implementations
sourceimpl Clone for CreateBasePathMappingInput
impl Clone for CreateBasePathMappingInput
sourcefn clone(&self) -> CreateBasePathMappingInput
fn clone(&self) -> CreateBasePathMappingInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for CreateBasePathMappingInput
impl Debug for CreateBasePathMappingInput
sourceimpl PartialEq<CreateBasePathMappingInput> for CreateBasePathMappingInput
impl PartialEq<CreateBasePathMappingInput> for CreateBasePathMappingInput
sourcefn eq(&self, other: &CreateBasePathMappingInput) -> bool
fn eq(&self, other: &CreateBasePathMappingInput) -> bool
impl StructuralPartialEq for CreateBasePathMappingInput
Auto Trait Implementations
impl RefUnwindSafe for CreateBasePathMappingInput
impl Send for CreateBasePathMappingInput
impl Sync for CreateBasePathMappingInput
impl Unpin for CreateBasePathMappingInput
impl UnwindSafe for CreateBasePathMappingInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more