Class: Aws::CodePipeline::Types::Condition

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#resultString

The action to be done when the condition is met. For example, rolling back an execution for a failure condition.

Returns:

  • (String)


1338
1339
1340
1341
1342
1343
# File 'lib/aws-sdk-codepipeline/types.rb', line 1338

class Condition < Struct.new(
  :result,
  :rules)
  SENSITIVE = []
  include Aws::Structure
end

#rulesArray<Types::RuleDeclaration>

The rules that make up the condition.

Returns:



1338
1339
1340
1341
1342
1343
# File 'lib/aws-sdk-codepipeline/types.rb', line 1338

class Condition < Struct.new(
  :result,
  :rules)
  SENSITIVE = []
  include Aws::Structure
end