#[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
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) -> &[PatchOperation]
pub fn patch_operations(&self) -> &[PatchOperation]
For more information about supported patch operations, see Patch Operations.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .patch_operations.is_none().
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateBasePathMappingInput
impl Debug for UpdateBasePathMappingInput
source§impl PartialEq for UpdateBasePathMappingInput
impl PartialEq for UpdateBasePathMappingInput
source§fn eq(&self, other: &UpdateBasePathMappingInput) -> bool
fn eq(&self, other: &UpdateBasePathMappingInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateBasePathMappingInput
Auto Trait Implementations§
impl Freeze for UpdateBasePathMappingInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more