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

pub struct DeploymentProperties {
    pub description: Option<Value<String>>,
    pub rest_api_id: Value<String>,
    pub stage_description: Option<Value<StageDescription>>,
    pub stage_name: Option<Value<String>>,
}

Properties for the Deployment resource.

Fields

Property Description.

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

Property RestApiId.

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

Property StageDescription.

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

Property StageName.

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

Trait Implementations

impl Debug for DeploymentProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for DeploymentProperties
[src]

[src]

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

impl Serialize for DeploymentProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<DeploymentProperties> for Deployment
[src]

[src]

Performs the conversion.

Auto Trait Implementations