Class: Aws::SSMIncidents::Types::CloudFormationStackUpdate
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSMIncidents::Types::CloudFormationStackUpdate
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ssmincidents/types.rb
Overview
Information about an CloudFormation stack creation or update that occurred around the time of an incident and could be a potential cause of the incident.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_time ⇒ Time
The timestamp for when the CloudFormation stack creation or update ended.
-
#stack_arn ⇒ String
The Amazon Resource Name (ARN) of the CloudFormation stack involved in the update.
-
#start_time ⇒ Time
The timestamp for when the CloudFormation stack creation or update began.
Instance Attribute Details
#end_time ⇒ Time
The timestamp for when the CloudFormation stack creation or update ended. Not reported for deployments that are still in progress.
236 237 238 239 240 241 242 |
# File 'lib/aws-sdk-ssmincidents/types.rb', line 236 class CloudFormationStackUpdate < Struct.new( :end_time, :stack_arn, :start_time) SENSITIVE = [] include Aws::Structure end |
#stack_arn ⇒ String
The Amazon Resource Name (ARN) of the CloudFormation stack involved in the update.
236 237 238 239 240 241 242 |
# File 'lib/aws-sdk-ssmincidents/types.rb', line 236 class CloudFormationStackUpdate < Struct.new( :end_time, :stack_arn, :start_time) SENSITIVE = [] include Aws::Structure end |
#start_time ⇒ Time
The timestamp for when the CloudFormation stack creation or update began.
236 237 238 239 240 241 242 |
# File 'lib/aws-sdk-ssmincidents/types.rb', line 236 class CloudFormationStackUpdate < Struct.new( :end_time, :stack_arn, :start_time) SENSITIVE = [] include Aws::Structure end |