Struct cfn::aws::cloudformation::StackProperties [] [src]

pub struct StackProperties {
    pub notification_ar_ns: Option<ValueList<String>>,
    pub parameters: Option<ValueMap<String>>,
    pub tags: Option<ValueList<Tag>>,
    pub template_url: Value<String>,
    pub timeout_in_minutes: Option<Value<u32>>,
}

Properties for the Stack resource.

Fields

Property NotificationARNs.

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

Property Parameters.

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

Property Tags.

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

Property TemplateURL.

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

Property TimeoutInMinutes.

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

Trait Implementations

impl Debug for StackProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for StackProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<StackProperties> for Stack
[src]

[src]

Performs the conversion.

Auto Trait Implementations