Uses of Enum
software.amazon.awssdk.core.retry.RetryMode
Packages that use RetryMode
Package
Description
-
Uses of RetryMode in software.amazon.awssdk.core.client.config
Fields in software.amazon.awssdk.core.client.config with type parameters of type RetryModeModifier and TypeFieldDescriptionstatic final SdkClientOption<RetryMode>SdkClientOption.CONFIGURED_RETRY_MODEThe retry mode set by the customer usingClientOverrideConfiguration.Builder.retryStrategy(RetryMode).static final SdkClientOption<RetryMode>SdkClientOption.DEFAULT_RETRY_MODEOption to specify the default retry mode.Methods in software.amazon.awssdk.core.client.config that return RetryModeMethods in software.amazon.awssdk.core.client.config that return types with arguments of type RetryModeModifier and TypeMethodDescriptionClientOverrideConfiguration.retryMode()The optional retry mode that should be used when handling failure cases.Methods in software.amazon.awssdk.core.client.config with parameters of type RetryModeModifier and TypeMethodDescriptionClientOverrideConfiguration.Builder.retryPolicy(RetryMode retryMode) Deprecated.ClientOverrideConfiguration.Builder.retryStrategy(RetryMode retryMode) Configure the retry mode used to resolve the correspondingRetryStrategythat should be used when handling failure cases. -
Uses of RetryMode in software.amazon.awssdk.core.internal.retry
Methods in software.amazon.awssdk.core.internal.retry that return RetryModeModifier and TypeMethodDescriptionstatic RetryModeSdkDefaultRetryStrategy.retryMode(RetryStrategy retryStrategy) Returns theRetryModefor the given retry strategy.Methods in software.amazon.awssdk.core.internal.retry with parameters of type RetryModeModifier and TypeMethodDescriptionstatic Durationstatic RetryStrategySdkDefaultRetryStrategy.forRetryMode(RetryMode mode) Retrieve the appropriate retry strategy for the retry mode with AWS-specific conditions added.static RetryStrategySdkDefaultRetryStrategy.forRetryMode(RetryMode mode, boolean newRetries2026Enabled) Retrieve the appropriate retry strategy for the retry mode with AWS-specific conditions added.static IntegerSdkDefaultRetrySetting.maxAttempts(RetryMode retryMode) static DurationSdkDefaultRetrySetting.throttledBaseDelay(RetryMode retryMode) SdkDefaultRetrySetting.tokenCostFunction(RetryMode retryMode) -
Uses of RetryMode in software.amazon.awssdk.core.retry
Methods in software.amazon.awssdk.core.retry that return RetryModeModifier and TypeMethodDescriptionstatic RetryModeRetryMode.defaultRetryMode()Retrieve the default retry mode by consulting the locations described inRetryMode, or LEGACY if no value is configured.RetryMode.Resolver.resolve()Resolve which retry mode should be used, based on the configured values.RetryPolicy.retryMode()Deprecated.Retrieve theRetryModethat was used to determine the defaults for this retry policy.static RetryModeReturns the enum constant of this type with the specified name.static RetryMode[]RetryMode.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in software.amazon.awssdk.core.retry with parameters of type RetryModeModifier and TypeMethodDescriptionstatic RetryPolicy.BuilderDeprecated.Create aRetryPolicy.Builderpopulated with the defaults from the providedRetryMode.RetryMode.Resolver.defaultRetryMode(RetryMode defaultRetryMode) Configure theRetryModethat should be used if the mode is not specified anywhere else.static RetryPolicyRetryPolicy.forRetryMode(RetryMode retryMode) Deprecated.Create aRetryPolicyusing the providedRetryModedefaults. -
Uses of RetryMode in software.amazon.awssdk.core.retry.backoff
Methods in software.amazon.awssdk.core.retry.backoff with parameters of type RetryModeModifier and TypeMethodDescriptionstatic BackoffStrategyBackoffStrategy.defaultStrategy(RetryMode retryMode) Deprecated.static BackoffStrategyBackoffStrategy.defaultThrottlingStrategy(RetryMode retryMode) Deprecated. -
Uses of RetryMode in software.amazon.awssdk.core.retry.conditions
Methods in software.amazon.awssdk.core.retry.conditions with parameters of type RetryModeModifier and TypeMethodDescriptionstatic MaxNumberOfRetriesConditionMaxNumberOfRetriesCondition.forRetryMode(RetryMode retryMode) static TokenBucketRetryConditionTokenBucketRetryCondition.forRetryMode(RetryMode retryMode) Create a condition using the configuredRetryMode.
ClientOverrideConfiguration.Builder.retryStrategy(RetryMode)