#[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 ==
.