Class: Aws::CloudFormation::Types::RollbackTrigger
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::RollbackTrigger
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudformation/types.rb
Overview
A rollback trigger CloudFormation monitors during creation and updating of stacks. If any of the alarms you specify goes to ALARM state during the stack operation or within the specified monitoring period afterwards, CloudFormation rolls back the entire stack operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The Amazon Resource Name (ARN) of the rollback trigger.
-
#type ⇒ String
The resource type of the rollback trigger.
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) of the rollback trigger.
If a specified trigger is missing, the entire stack operation fails and is rolled back.
7317 7318 7319 7320 7321 7322 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 7317 class RollbackTrigger < Struct.new( :arn, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The resource type of the rollback trigger. Specify either
- AWS::CloudWatch::Alarm][1
resource types.
[1]: docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-alarm.html [2]: docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html
7317 7318 7319 7320 7321 7322 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 7317 class RollbackTrigger < Struct.new( :arn, :type) SENSITIVE = [] include Aws::Structure end |