Interface RetryDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RetryDetails.Builder,RetryDetails>,SdkBuilder<RetryDetails.Builder,RetryDetails>,SdkPojo
- Enclosing class:
- RetryDetails
@Mutable @NotThreadSafe public static interface RetryDetails.Builder extends SdkPojo, CopyableBuilder<RetryDetails.Builder,RetryDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RetryDetails.BuildercurrentAttempt(Integer currentAttempt)The current attempt number for this operation.RetryDetails.BuildernextAttemptDelaySeconds(Integer nextAttemptDelaySeconds)The delay before the next retry attempt, in seconds.-
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
-
currentAttempt
RetryDetails.Builder currentAttempt(Integer currentAttempt)
The current attempt number for this operation.
- Parameters:
currentAttempt- The current attempt number for this operation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextAttemptDelaySeconds
RetryDetails.Builder nextAttemptDelaySeconds(Integer nextAttemptDelaySeconds)
The delay before the next retry attempt, in seconds.
- Parameters:
nextAttemptDelaySeconds- The delay before the next retry attempt, in seconds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-