Class: Aws::FIS::Types::CreateExperimentTemplateStopConditionInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::FIS::Types::CreateExperimentTemplateStopConditionInput
- Defined in:
- gems/aws-sdk-fis/lib/aws-sdk-fis/types.rb
Overview
Specifies a stop condition for an experiment template.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#source ⇒ String
The source for the stop condition.
-
#value ⇒ String
The Amazon Resource Name (ARN) of the CloudWatch alarm.
Instance Attribute Details
#source ⇒ String
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.
344 345 346 347 348 349 |
# File 'gems/aws-sdk-fis/lib/aws-sdk-fis/types.rb', line 344 class CreateExperimentTemplateStopConditionInput < Struct.new( :source, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The Amazon Resource Name (ARN) of the CloudWatch alarm. This is required if the source is a CloudWatch alarm.
344 345 346 347 348 349 |
# File 'gems/aws-sdk-fis/lib/aws-sdk-fis/types.rb', line 344 class CreateExperimentTemplateStopConditionInput < Struct.new( :source, :value) SENSITIVE = [] include Aws::Structure end |