Class: Aws::CodePipeline::Types::FailureConditions
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::FailureConditions
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codepipeline/types.rb
Overview
The configuration that specifies the result, such as rollback, to occur upon stage failure. For more information about conditions, see
- Stage conditions][1
-
and [How do stage conditions work?].
[1]: docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html [2]: docs.aws.amazon.com/codepipeline/latest/userguide/concepts-how-it-works-conditions.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#conditions ⇒ Array<Types::Condition>
The conditions that are configured as failure conditions.
-
#result ⇒ String
The specified result for when the failure conditions are met, such as rolling back the stage.
-
#retry_configuration ⇒ Types::RetryConfiguration
The retry configuration specifies automatic retry for a failed stage, along with the configured retry mode.
Instance Attribute Details
#conditions ⇒ Array<Types::Condition>
The conditions that are configured as failure conditions. For more information about conditions, see [Stage conditions] and [How do stage conditions work?].
[1]: docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html [2]: docs.aws.amazon.com/codepipeline/latest/userguide/concepts-how-it-works-conditions.html
1953 1954 1955 1956 1957 1958 1959 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 1953 class FailureConditions < Struct.new( :result, :retry_configuration, :conditions) SENSITIVE = [] include Aws::Structure end |
#result ⇒ String
The specified result for when the failure conditions are met, such as rolling back the stage.
1953 1954 1955 1956 1957 1958 1959 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 1953 class FailureConditions < Struct.new( :result, :retry_configuration, :conditions) SENSITIVE = [] include Aws::Structure end |
#retry_configuration ⇒ Types::RetryConfiguration
The retry configuration specifies automatic retry for a failed stage, along with the configured retry mode.
1953 1954 1955 1956 1957 1958 1959 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 1953 class FailureConditions < Struct.new( :result, :retry_configuration, :conditions) SENSITIVE = [] include Aws::Structure end |