Interface RetryConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RetryConfiguration.Builder,RetryConfiguration>,SdkBuilder<RetryConfiguration.Builder,RetryConfiguration>,SdkPojo
- Enclosing class:
- RetryConfiguration
public static interface RetryConfiguration.Builder extends SdkPojo, CopyableBuilder<RetryConfiguration.Builder,RetryConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RetryConfiguration.BuilderretryMode(String retryMode)The method that you want to configure for automatic stage retry on stage failure.RetryConfiguration.BuilderretryMode(StageRetryMode retryMode)The method that you want to configure for automatic stage retry on stage failure.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
retryMode
RetryConfiguration.Builder retryMode(String retryMode)
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.
- Parameters:
retryMode- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StageRetryMode,StageRetryMode
-
retryMode
RetryConfiguration.Builder retryMode(StageRetryMode retryMode)
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.
- Parameters:
retryMode- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StageRetryMode,StageRetryMode
-
-