Class: Aws::MWAAServerless::Types::ThrottlingException
- Inherits:
-
Struct
- Object
- Struct
- Aws::MWAAServerless::Types::ThrottlingException
- Defined in:
- gems/aws-sdk-mwaaserverless/lib/aws-sdk-mwaaserverless/types.rb
Overview
The request was denied because too many requests were made in a short period, exceeding the service rate limits. Amazon Managed Workflows for Apache Airflow Serverless implements throttling controls to ensure fair resource allocation across all customers in the multi-tenant environment. This helps maintain service stability and performance. If you encounter throttling, implement exponential backoff and retry logic in your applications, or consider distributing your API calls over a longer time period.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#message ⇒ String
-
#quota_code ⇒ String
The code of the quota.
-
#retry_after_seconds ⇒ Integer
The number of seconds to wait before retrying the operation.
-
#service_code ⇒ String
The code for the service.
Instance Attribute Details
#message ⇒ String
1222 1223 1224 1225 1226 1227 1228 1229 |
# File 'gems/aws-sdk-mwaaserverless/lib/aws-sdk-mwaaserverless/types.rb', line 1222 class ThrottlingException < Struct.new( :message, :service_code, :quota_code, :retry_after_seconds) SENSITIVE = [] include Aws::Structure end |
#quota_code ⇒ String
The code of the quota.
1222 1223 1224 1225 1226 1227 1228 1229 |
# File 'gems/aws-sdk-mwaaserverless/lib/aws-sdk-mwaaserverless/types.rb', line 1222 class ThrottlingException < Struct.new( :message, :service_code, :quota_code, :retry_after_seconds) SENSITIVE = [] include Aws::Structure end |
#retry_after_seconds ⇒ Integer
The number of seconds to wait before retrying the operation.
1222 1223 1224 1225 1226 1227 1228 1229 |
# File 'gems/aws-sdk-mwaaserverless/lib/aws-sdk-mwaaserverless/types.rb', line 1222 class ThrottlingException < Struct.new( :message, :service_code, :quota_code, :retry_after_seconds) SENSITIVE = [] include Aws::Structure end |
#service_code ⇒ String
The code for the service.
1222 1223 1224 1225 1226 1227 1228 1229 |
# File 'gems/aws-sdk-mwaaserverless/lib/aws-sdk-mwaaserverless/types.rb', line 1222 class ThrottlingException < Struct.new( :message, :service_code, :quota_code, :retry_after_seconds) SENSITIVE = [] include Aws::Structure end |