Struct cfn::aws::autoscaling::LifecycleHookProperties [] [src]

pub struct LifecycleHookProperties {
    pub auto_scaling_group_name: Value<String>,
    pub default_result: Option<Value<String>>,
    pub heartbeat_timeout: Option<Value<u32>>,
    pub lifecycle_hook_name: Option<Value<String>>,
    pub lifecycle_transition: Value<String>,
    pub notification_metadata: Option<Value<String>>,
    pub notification_target_arn: Option<Value<String>>,
    pub role_arn: Option<Value<String>>,
}

Properties for the LifecycleHook resource.

Fields

Property AutoScalingGroupName.

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

Property DefaultResult.

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

Property HeartbeatTimeout.

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

Property LifecycleHookName.

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

Property LifecycleTransition.

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

Property NotificationMetadata.

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

Property NotificationTargetARN.

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

Property RoleARN.

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

Trait Implementations

impl Debug for LifecycleHookProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for LifecycleHookProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<LifecycleHookProperties> for LifecycleHook
[src]

[src]

Performs the conversion.

Auto Trait Implementations