Uses of Interface
software.amazon.awssdk.core.retry.RetryPolicy.Builder
Packages that use RetryPolicy.Builder
-
Uses of RetryPolicy.Builder in software.amazon.awssdk.core.client.config
Method parameters in software.amazon.awssdk.core.client.config with type arguments of type RetryPolicy.BuilderModifier and TypeMethodDescriptionClientOverrideConfiguration.Builder.retryPolicy(Consumer<RetryPolicy.Builder> retryPolicy) Deprecated. -
Uses of RetryPolicy.Builder in software.amazon.awssdk.core.retry
Methods in software.amazon.awssdk.core.retry that return RetryPolicy.BuilderModifier and TypeMethodDescriptionRetryPolicy.Builder.additionalRetryConditionsAllowed(boolean additionalRetryConditionsAllowed) Configure whether further conditions can be added to this policy after it is created.RetryPolicy.Builder.backoffStrategy(BackoffStrategy backoffStrategy) Configure the backoff strategy that should be used for waiting in between retry attempts.static RetryPolicy.BuilderRetryPolicy.builder()Deprecated.Create aRetryPolicy.Builderpopulated with the defaults from theRetryMode.defaultRetryMode().static RetryPolicy.BuilderDeprecated.Create aRetryPolicy.Builderpopulated with the defaults from the providedRetryMode.RetryPolicy.Builder.fastFailRateLimiting(Boolean fastFailRateLimiting) Whether the client should immediately fail the request when not enough capacity is immediately available from the rate limiter to execute the request, instead of waiting for capacity to be available.RetryPolicy.Builder.numRetries(Integer numRetries) Configure the maximum number of times that a single request should be retried, assuming it fails for a retryable error.RetryPolicy.Builder.retryCapacityCondition(RetryCondition retryCapacityCondition) Configure theRetryConditionthat should be used to throttle the number of retries attempted by the SDK client as a whole.RetryPolicy.Builder.retryCondition(RetryCondition retryCondition) Configure the condition under which the request should be retried.RetryPolicy.Builder.throttlingBackoffStrategy(BackoffStrategy backoffStrategy) Configure the backoff strategy that should be used for waiting in between retry attempts after a throttling error is encountered.RetryPolicy.toBuilder()Deprecated.
#retryStrategy(Consumer<RetryStrategy.Builder>)