Interface RetryPolicy.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RetryPolicy.Builder,RetryPolicy>,SdkBuilder<RetryPolicy.Builder,RetryPolicy>,SdkPojo
- Enclosing class:
- RetryPolicy
public static interface RetryPolicy.Builder extends SdkPojo, CopyableBuilder<RetryPolicy.Builder,RetryPolicy>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RetryPolicy.BuildermaximumEventAgeInSeconds(Integer maximumEventAgeInSeconds)The maximum amount of time, in seconds, to continue to make retry attempts.RetryPolicy.BuildermaximumRetryAttempts(Integer maximumRetryAttempts)The maximum number of retry attempts to make before the request fails.-
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, sdkFields
-
-
-
-
Method Detail
-
maximumRetryAttempts
RetryPolicy.Builder maximumRetryAttempts(Integer maximumRetryAttempts)
The maximum number of retry attempts to make before the request fails. Retry attempts continue until either the maximum number of attempts is made or until the duration of the
MaximumEventAgeInSecondsis met.- Parameters:
maximumRetryAttempts- The maximum number of retry attempts to make before the request fails. Retry attempts continue until either the maximum number of attempts is made or until the duration of theMaximumEventAgeInSecondsis met.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maximumEventAgeInSeconds
RetryPolicy.Builder maximumEventAgeInSeconds(Integer maximumEventAgeInSeconds)
The maximum amount of time, in seconds, to continue to make retry attempts.
- Parameters:
maximumEventAgeInSeconds- The maximum amount of time, in seconds, to continue to make retry attempts.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-