Struct cfn::aws::apigateway::BasePathMappingProperties [] [src]

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

Properties for the BasePathMapping resource.

Fields

Property BasePath.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property DomainName.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property RestApiId.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Stage.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Trait Implementations

impl Debug for BasePathMappingProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for BasePathMappingProperties
[src]

[src]

Returns the "default value" for a type. Read more

impl Serialize for BasePathMappingProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for BasePathMappingProperties
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<BasePathMappingProperties> for BasePathMapping
[src]

[src]

Performs the conversion.

Auto Trait Implementations