Class: Aws::DynamoDB::Types::ProvisionedThroughputExceededException
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::ProvisionedThroughputExceededException
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-dynamodb/types.rb
Overview
The request was denied due to request throttling. For detailed information about why the request was throttled and the ARN of the impacted resource, find the [ThrottlingReason] field in the returned exception. The Amazon Web Services SDKs for DynamoDB automatically retry requests that receive this exception. Your request is eventually successful, unless your retry queue is too large to finish. Reduce the frequency of requests and use exponential backoff. For more information, go to [Error Retries and Exponential Backoff] in the *Amazon DynamoDB Developer Guide*.
[1]: docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_ThrottlingReason.html [2]: docs.aws.amazon.com/amazondynamodb/latest/developerguide/Programming.Errors.html#Programming.Errors.RetryAndBackoff
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#message ⇒ String
You exceeded your maximum allowed provisioned throughput.
-
#throttling_reasons ⇒ Array<Types::ThrottlingReason>
A list of [ThrottlingReason] that provide detailed diagnostic information about why the request was throttled.
Instance Attribute Details
#message ⇒ String
You exceeded your maximum allowed provisioned throughput.
6248 6249 6250 6251 6252 6253 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 6248 class ProvisionedThroughputExceededException < Struct.new( :message, :throttling_reasons) SENSITIVE = [] include Aws::Structure end |
#throttling_reasons ⇒ Array<Types::ThrottlingReason>
A list of [ThrottlingReason] that provide detailed diagnostic information about why the request was throttled.
[1]: docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_ThrottlingReason.html
6248 6249 6250 6251 6252 6253 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 6248 class ProvisionedThroughputExceededException < Struct.new( :message, :throttling_reasons) SENSITIVE = [] include Aws::Structure end |