Class: Aws::SSMIncidents::Types::CloudFormationStackUpdate

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-ssmincidents/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

Instance Attribute Details

#end_timeTime

The timestamp for when the CloudFormation stack creation or update ended. Not reported for deployments that are still in progress.

Returns:

  • (Time)


236
237
238
239
240
241
242
# File 'gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb', line 236

class CloudFormationStackUpdate < Struct.new(
  :end_time,
  :stack_arn,
  :start_time)
  SENSITIVE = []
  include Aws::Structure
end

#stack_arnString

The Amazon Resource Name (ARN) of the CloudFormation stack involved in the update.

Returns:

  • (String)


236
237
238
239
240
241
242
# File 'gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb', line 236

class CloudFormationStackUpdate < Struct.new(
  :end_time,
  :stack_arn,
  :start_time)
  SENSITIVE = []
  include Aws::Structure
end

#start_timeTime

The timestamp for when the CloudFormation stack creation or update began.

Returns:

  • (Time)


236
237
238
239
240
241
242
# File 'gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb', line 236

class CloudFormationStackUpdate < Struct.new(
  :end_time,
  :stack_arn,
  :start_time)
  SENSITIVE = []
  include Aws::Structure
end