Class: Aws::FIS::Types::CreateExperimentTemplateStopConditionInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::FIS::Types::CreateExperimentTemplateStopConditionInput
- Includes:
- Structure
- Defined in:
- 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.
308 309 310 311 312 313 |
# File 'lib/aws-sdk-fis/types.rb', line 308 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.
308 309 310 311 312 313 |
# File 'lib/aws-sdk-fis/types.rb', line 308 class CreateExperimentTemplateStopConditionInput < Struct.new( :source, :value) SENSITIVE = [] include Aws::Structure end |