#[non_exhaustive]pub struct UpdateBasePathMappingInput { /* private fields */ }Expand description
A request to change information about the BasePathMapping resource.
Implementations
sourceimpl UpdateBasePathMappingInput
impl UpdateBasePathMappingInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateBasePathMapping, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateBasePathMapping, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateBasePathMapping>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateBasePathMappingInput.
sourceimpl UpdateBasePathMappingInput
impl UpdateBasePathMappingInput
sourcepub fn domain_name(&self) -> Option<&str>
pub fn domain_name(&self) -> Option<&str>
The domain name of the BasePathMapping resource to change.
sourcepub fn base_path(&self) -> Option<&str>
pub fn base_path(&self) -> Option<&str>
The base path of the BasePathMapping resource to change.
To specify an empty base path, set this parameter to '(none)'.
sourcepub fn patch_operations(&self) -> Option<&[PatchOperation]>
pub fn patch_operations(&self) -> Option<&[PatchOperation]>
For more information about supported patch operations, see Patch Operations.
Trait Implementations
sourceimpl Clone for UpdateBasePathMappingInput
impl Clone for UpdateBasePathMappingInput
sourcefn clone(&self) -> UpdateBasePathMappingInput
fn clone(&self) -> UpdateBasePathMappingInput
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 UpdateBasePathMappingInput
impl Debug for UpdateBasePathMappingInput
sourceimpl PartialEq<UpdateBasePathMappingInput> for UpdateBasePathMappingInput
impl PartialEq<UpdateBasePathMappingInput> for UpdateBasePathMappingInput
sourcefn eq(&self, other: &UpdateBasePathMappingInput) -> bool
fn eq(&self, other: &UpdateBasePathMappingInput) -> bool
impl StructuralPartialEq for UpdateBasePathMappingInput
Auto Trait Implementations
impl RefUnwindSafe for UpdateBasePathMappingInput
impl Send for UpdateBasePathMappingInput
impl Sync for UpdateBasePathMappingInput
impl Unpin for UpdateBasePathMappingInput
impl UnwindSafe for UpdateBasePathMappingInput
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