#[non_exhaustive]pub struct UpdateBasePathMappingInput {
pub domain_name: Option<String>,
pub base_path: Option<String>,
pub patch_operations: Option<Vec<PatchOperation>>,
}
Expand description
A request to change information about the BasePathMapping resource.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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 change.
base_path: Option<String>
The base path of the BasePathMapping resource to change.
To specify an empty base path, set this parameter to '(none)'
.
patch_operations: Option<Vec<PatchOperation>>
For more information about supported patch operations, see Patch Operations.
Implementations§
source§impl 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.
source§impl UpdateBasePathMappingInput
impl UpdateBasePathMappingInput
sourcepub fn builder() -> UpdateBasePathMappingInputBuilder
pub fn builder() -> UpdateBasePathMappingInputBuilder
Creates a new builder-style object to manufacture UpdateBasePathMappingInput
.
Trait Implementations§
source§impl Clone for UpdateBasePathMappingInput
impl Clone for UpdateBasePathMappingInput
source§fn clone(&self) -> UpdateBasePathMappingInput
fn clone(&self) -> UpdateBasePathMappingInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for UpdateBasePathMappingInput
impl Debug for UpdateBasePathMappingInput
source§impl PartialEq<UpdateBasePathMappingInput> for UpdateBasePathMappingInput
impl PartialEq<UpdateBasePathMappingInput> for UpdateBasePathMappingInput
source§fn eq(&self, other: &UpdateBasePathMappingInput) -> bool
fn eq(&self, other: &UpdateBasePathMappingInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more