Class: Aws::FIS::Types::UpdateExperimentTemplateStopConditionInput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-fis/lib/aws-sdk-fis/types.rb

Overview

Specifies a stop condition for an experiment. You can define a stop condition as a CloudWatch alarm.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#sourceString

The source for the stop condition. Specify aws:cloudwatch:alarm if the stop condition is defined by a CloudWatch alarm. Specify none if there is no stop condition.

Returns:

  • (String)


2169
2170
2171
2172
2173
2174
# File 'gems/aws-sdk-fis/lib/aws-sdk-fis/types.rb', line 2169

class UpdateExperimentTemplateStopConditionInput < Struct.new(
  :source,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

The Amazon Resource Name (ARN) of the CloudWatch alarm.

Returns:

  • (String)


2169
2170
2171
2172
2173
2174
# File 'gems/aws-sdk-fis/lib/aws-sdk-fis/types.rb', line 2169

class UpdateExperimentTemplateStopConditionInput < Struct.new(
  :source,
  :value)
  SENSITIVE = []
  include Aws::Structure
end