pub struct GetBasePathMappingRequest {
pub base_path: String,
pub domain_name: String,
}Expand description
Request to describe a BasePathMapping resource.
Fields§
§base_path: String[Required] The base path name that callers of the API must provide as part of the URL after the domain name. This value must be unique for all of the mappings across a single API. Specify '(none)' if you do not want callers to specify any base path name after the domain name.
domain_name: String[Required] The domain name of the BasePathMapping resource to be described.
Trait Implementations§
Source§impl Clone for GetBasePathMappingRequest
impl Clone for GetBasePathMappingRequest
Source§fn clone(&self) -> GetBasePathMappingRequest
fn clone(&self) -> GetBasePathMappingRequest
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 GetBasePathMappingRequest
impl Debug for GetBasePathMappingRequest
Source§impl Default for GetBasePathMappingRequest
impl Default for GetBasePathMappingRequest
Source§fn default() -> GetBasePathMappingRequest
fn default() -> GetBasePathMappingRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for GetBasePathMappingRequest
Auto Trait Implementations§
impl Freeze for GetBasePathMappingRequest
impl RefUnwindSafe for GetBasePathMappingRequest
impl Send for GetBasePathMappingRequest
impl Sync for GetBasePathMappingRequest
impl Unpin for GetBasePathMappingRequest
impl UnwindSafe for GetBasePathMappingRequest
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