Class: Aws::CodePipeline::Types::RetryConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::RetryConfiguration
- Defined in:
- gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb
Overview
The retry configuration specifies automatic retry for a failed stage, along with the configured retry mode.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#retry_mode ⇒ String
The method that you want to configure for automatic stage retry on stage failure.
Instance Attribute Details
#retry_mode ⇒ String
The method that you want to configure for automatic stage retry on stage failure. You can specify to retry only failed action in the stage or all actions in the stage.
4212 4213 4214 4215 4216 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 4212 class RetryConfiguration < Struct.new( :retry_mode) SENSITIVE = [] include Aws::Structure end |