Uses of Class
com.amazonaws.retry.RetryPolicy
-
Packages that use RetryPolicy Package Description com.amazonaws com.amazonaws.retry -
-
Uses of RetryPolicy in com.amazonaws
Fields in com.amazonaws declared as RetryPolicy Modifier and Type Field Description static RetryPolicy
ClientConfiguration. DEFAULT_RETRY_POLICY
Default request retry policy, including the maximum retry count of 3, the default retry condition and the default back-off strategy.Methods in com.amazonaws that return RetryPolicy Modifier and Type Method Description RetryPolicy
ClientConfiguration. getRetryPolicy()
Returns the retry policy upon failed requests.Methods in com.amazonaws with parameters of type RetryPolicy Modifier and Type Method Description void
ClientConfiguration. setRetryPolicy(RetryPolicy retryPolicy)
Sets the retry policy upon failed requests.ClientConfiguration
ClientConfiguration. withRetryPolicy(RetryPolicy retryPolicy)
Sets the retry policy upon failed requests, and returns the updated ClientConfiguration object. -
Uses of RetryPolicy in com.amazonaws.retry
Fields in com.amazonaws.retry declared as RetryPolicy Modifier and Type Field Description static RetryPolicy
PredefinedRetryPolicies. DEFAULT
SDK default retry policy (except for AmazonDynamoDBClient, whose constructor will replace the DEFAULT with DYNAMODB_DEFAULT.)static RetryPolicy
PredefinedRetryPolicies. DYNAMODB_DEFAULT
Default policy for DynamoDB clientstatic RetryPolicy
PredefinedRetryPolicies. NO_RETRY_POLICY
No retry policyMethods in com.amazonaws.retry that return RetryPolicy Modifier and Type Method Description static RetryPolicy
PredefinedRetryPolicies. getDefaultRetryPolicy()
Returns the SDK default retry policy.static RetryPolicy
PredefinedRetryPolicies. getDefaultRetryPolicyWithCustomMaxRetries(int maxErrorRetry)
Returns the SDK default retry policy with the specified max retry count.static RetryPolicy
PredefinedRetryPolicies. getDynamoDBDefaultRetryPolicy()
Returns the default retry policy for DynamoDB client.static RetryPolicy
PredefinedRetryPolicies. getDynamoDBDefaultRetryPolicyWithCustomMaxRetries(int maxErrorRetry)
Returns the default retry policy for DynamoDB client with the specified max retry count.
-