Class: Aws::KeyspacesStreams::Types::ThrottlingException
- Inherits:
-
Struct
- Object
- Struct
- Aws::KeyspacesStreams::Types::ThrottlingException
- Defined in:
- gems/aws-sdk-keyspacesstreams/lib/aws-sdk-keyspacesstreams/types.rb
Overview
The request rate is too high and exceeds the service's throughput limits.
This exception occurs when you send too many requests in a short period of time. Implement exponential backoff in your retry strategy to handle this exception. Reducing your request frequency or distributing requests more evenly can help avoid throughput exceptions.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#message ⇒ String
The request was denied due to request throttling.
Instance Attribute Details
#message ⇒ String
The request was denied due to request throttling. Reduce the frequency of requests and try again.
799 800 801 802 803 |
# File 'gems/aws-sdk-keyspacesstreams/lib/aws-sdk-keyspacesstreams/types.rb', line 799 class ThrottlingException < Struct.new( :message) SENSITIVE = [] include Aws::Structure end |