Interface RetryStrategy.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RetryStrategy.Builder,RetryStrategy>,SdkBuilder<RetryStrategy.Builder,RetryStrategy>,SdkPojo
- Enclosing class:
- RetryStrategy
public static interface RetryStrategy.Builder extends SdkPojo, CopyableBuilder<RetryStrategy.Builder,RetryStrategy>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RetryStrategy.BuildermaximumRetryAttempts(Integer maximumRetryAttempts)The number of times to retry the job.-
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
-
maximumRetryAttempts
RetryStrategy.Builder maximumRetryAttempts(Integer maximumRetryAttempts)
The number of times to retry the job. When the job is retried, it's
SecondaryStatusis changed toSTARTING.- Parameters:
maximumRetryAttempts- The number of times to retry the job. When the job is retried, it'sSecondaryStatusis changed toSTARTING.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-