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

pub struct StageProperties {
    pub cache_cluster_enabled: Option<Value<bool>>,
    pub cache_cluster_size: Option<Value<String>>,
    pub client_certificate_id: Option<Value<String>>,
    pub deployment_id: Option<Value<String>>,
    pub description: Option<Value<String>>,
    pub documentation_version: Option<Value<String>>,
    pub method_settings: Option<ValueList<MethodSetting>>,
    pub rest_api_id: Value<String>,
    pub stage_name: Option<Value<String>>,
    pub variables: Option<ValueMap<String>>,
}

Properties for the Stage resource.

Fields

Property CacheClusterEnabled.

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

Property CacheClusterSize.

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

Property ClientCertificateId.

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

Property DeploymentId.

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

Property Description.

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

Property DocumentationVersion.

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

Property MethodSettings.

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 StageName.

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

Property Variables.

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

Trait Implementations

impl Debug for StageProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for StageProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<StageProperties> for Stage
[src]

[src]

Performs the conversion.

Auto Trait Implementations