pub struct UpdateBasePathMappingRequest {
pub base_path: String,
pub domain_name: String,
pub patch_operations: Option<Vec<PatchOperation>>,
}Expand description
A request to change information about the BasePathMapping resource.
Fields§
§base_path: String[Required] The base path of the BasePathMapping resource to change.
To specify an empty base path, set this parameter to '(none)'.
domain_name: String[Required] The domain name of the BasePathMapping resource to change.
patch_operations: Option<Vec<PatchOperation>>A list of update operations to be applied to the specified resource and in the order specified in this list.
Trait Implementations§
Source§impl Clone for UpdateBasePathMappingRequest
impl Clone for UpdateBasePathMappingRequest
Source§fn clone(&self) -> UpdateBasePathMappingRequest
fn clone(&self) -> UpdateBasePathMappingRequest
Returns a duplicate 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 UpdateBasePathMappingRequest
impl Debug for UpdateBasePathMappingRequest
Source§impl Default for UpdateBasePathMappingRequest
impl Default for UpdateBasePathMappingRequest
Source§fn default() -> UpdateBasePathMappingRequest
fn default() -> UpdateBasePathMappingRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateBasePathMappingRequest
impl PartialEq for UpdateBasePathMappingRequest
Source§fn eq(&self, other: &UpdateBasePathMappingRequest) -> bool
fn eq(&self, other: &UpdateBasePathMappingRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateBasePathMappingRequest
Auto Trait Implementations§
impl Freeze for UpdateBasePathMappingRequest
impl RefUnwindSafe for UpdateBasePathMappingRequest
impl Send for UpdateBasePathMappingRequest
impl Sync for UpdateBasePathMappingRequest
impl Unpin for UpdateBasePathMappingRequest
impl UnwindSafe for UpdateBasePathMappingRequest
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