Class: Aws::DynamoDB::Types::ProvisionedThroughputExceededException

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-dynamodb/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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#messageString

You exceeded your maximum allowed provisioned throughput.

Returns:

  • (String)


6232
6233
6234
6235
6236
6237
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 6232

class ProvisionedThroughputExceededException < Struct.new(
  :message,
  :throttling_reasons)
  SENSITIVE = []
  include Aws::Structure
end

#throttling_reasonsArray<Types::ThrottlingReason>

A list of ThrottlingReason that provide detailed diagnostic information about why the request was throttled.

Returns:



6232
6233
6234
6235
6236
6237
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 6232

class ProvisionedThroughputExceededException < Struct.new(
  :message,
  :throttling_reasons)
  SENSITIVE = []
  include Aws::Structure
end