Class: Aws::CodePipeline::Types::Condition
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodePipeline::Types::Condition
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codepipeline/types.rb
 
Overview
The condition for the stage. A condition is made up of the rules and the result for the condition.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #result  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The action to be done when the condition is met.
 - 
  
    
      #rules  ⇒ Array<Types::RuleDeclaration> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The rules that make up the condition.
 
Instance Attribute Details
#result ⇒ String
The action to be done when the condition is met. For example, rolling back an execution for a failure condition.
      1370 1371 1372 1373 1374 1375  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 1370 class Condition < Struct.new( :result, :rules) SENSITIVE = [] include Aws::Structure end  | 
  
#rules ⇒ Array<Types::RuleDeclaration>
The rules that make up the condition.
      1370 1371 1372 1373 1374 1375  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 1370 class Condition < Struct.new( :result, :rules) SENSITIVE = [] include Aws::Structure end  |