Class: Aws::CodePipeline::Types::RetryStageMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::RetryStageMetadata
- Defined in:
- gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb
Overview
The details of a specific automatic retry on stage failure, including the attempt number and trigger.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auto_stage_retry_attempt ⇒ Integer
The number of attempts for a specific stage with automatic retry on stage failure.
-
#latest_retry_trigger ⇒ String
The latest trigger for a specific stage where manual or automatic retries have been made upon stage failure.
-
#manual_stage_retry_attempt ⇒ Integer
The number of attempts for a specific stage where manual retries have been made upon stage failure.
Instance Attribute Details
#auto_stage_retry_attempt ⇒ Integer
The number of attempts for a specific stage with automatic retry on stage failure. One attempt is allowed for automatic stage retry on failure.
4339 4340 4341 4342 4343 4344 4345 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 4339 class RetryStageMetadata < Struct.new( :auto_stage_retry_attempt, :manual_stage_retry_attempt, :latest_retry_trigger) SENSITIVE = [] include Aws::Structure end |
#latest_retry_trigger ⇒ String
The latest trigger for a specific stage where manual or automatic retries have been made upon stage failure.
4339 4340 4341 4342 4343 4344 4345 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 4339 class RetryStageMetadata < Struct.new( :auto_stage_retry_attempt, :manual_stage_retry_attempt, :latest_retry_trigger) SENSITIVE = [] include Aws::Structure end |
#manual_stage_retry_attempt ⇒ Integer
The number of attempts for a specific stage where manual retries have been made upon stage failure.
4339 4340 4341 4342 4343 4344 4345 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 4339 class RetryStageMetadata < Struct.new( :auto_stage_retry_attempt, :manual_stage_retry_attempt, :latest_retry_trigger) SENSITIVE = [] include Aws::Structure end |