Class: Aws::BedrockAgentCore::Types::ThrottlingException
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCore::Types::ThrottlingException
- Defined in:
- gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb
Overview
The exception that occurs when the request was denied due to request throttling. This happens when you exceed the allowed request rate for an operation. Reduce the frequency of requests or implement exponential backoff retry logic in your application.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#event_type ⇒ Object
Returns the value of attribute event_type.
-
#message ⇒ String
Instance Attribute Details
#event_type ⇒ Object
Returns the value of attribute event_type
4969 4970 4971 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 4969 def event_type @event_type end |
#message ⇒ String
4969 4970 4971 4972 4973 4974 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 4969 class ThrottlingException < Struct.new( :message, :event_type) SENSITIVE = [] include Aws::Structure end |