Interface RetryPolicy.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<RetryPolicy.Builder,
,RetryPolicy> SdkBuilder<RetryPolicy.Builder,
,RetryPolicy> SdkPojo
- Enclosing class:
RetryPolicy
@Mutable
@NotThreadSafe
public static interface RetryPolicy.Builder
extends SdkPojo, CopyableBuilder<RetryPolicy.Builder,RetryPolicy>
-
Method Summary
Modifier and TypeMethodDescriptionmaximumEventAgeInSeconds
(Integer maximumEventAgeInSeconds) The maximum amount of time, in seconds, to continue to make retry attempts.maximumRetryAttempts
(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, sdkFieldNameToField, sdkFields
-
Method Details
-
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
MaximumEventAgeInSeconds
is 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 theMaximumEventAgeInSeconds
is met.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
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.
-