[][src]Struct rusoto_apigateway::CreateBasePathMappingRequest

pub struct CreateBasePathMappingRequest {
    pub base_path: Option<String>,
    pub domain_name: String,
    pub rest_api_id: String,
    pub stage: Option<String>,
}

Requests API Gateway to create a new BasePathMapping resource.

Fields

base_path: Option<String>

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 a base path name after the domain name.

domain_name: String

[Required] The domain name of the BasePathMapping resource to create.

rest_api_id: String

[Required] The string identifier of the associated RestApi.

stage: Option<String>

The name of the API's stage that you want to use for this mapping. Specify '(none)' if you do not want callers to explicitly specify the stage name after any base path name.

Trait Implementations

impl Clone for CreateBasePathMappingRequest[src]

impl Default for CreateBasePathMappingRequest[src]

impl PartialEq<CreateBasePathMappingRequest> for CreateBasePathMappingRequest[src]

impl Debug for CreateBasePathMappingRequest[src]

impl Serialize for CreateBasePathMappingRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self