Class: Aws::FIS::Types::UpdateExperimentTemplateStopConditionInput
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::FIS::Types::UpdateExperimentTemplateStopConditionInput
 
 
- 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
- 
  
    
      #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.
      2701 2702 2703 2704 2705 2706  | 
    
      # File 'gems/aws-sdk-fis/lib/aws-sdk-fis/types.rb', line 2701 class UpdateExperimentTemplateStopConditionInput < Struct.new( :source, :value) SENSITIVE = [] include Aws::Structure end  | 
  
#value ⇒ String
The Amazon Resource Name (ARN) of the CloudWatch alarm.
      2701 2702 2703 2704 2705 2706  | 
    
      # File 'gems/aws-sdk-fis/lib/aws-sdk-fis/types.rb', line 2701 class UpdateExperimentTemplateStopConditionInput < Struct.new( :source, :value) SENSITIVE = [] include Aws::Structure end  |