SecurityLake / Client / exceptions / ThrottlingException
ThrottlingException#
- class SecurityLake.Client.exceptions.ThrottlingException#
The limit on the number of requests per second was exceeded.
Example
try: ... except client.exceptions.ThrottlingException as e: print(e.response)
- response#
The parsed error response. All exceptions have a top level
Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.Syntax
{ 'message': 'string', 'quotaCode': 'string', 'retryAfterSeconds': 123, 'serviceCode': 'string', 'Error': { 'Code': 'string', 'Message': 'string' } }
Structure
(dict) –
The limit on the number of requests per second was exceeded.
message (string) –
quotaCode (string) –
That the rate of requests to Security Lake is exceeding the request quotas for your Amazon Web Services account.
retryAfterSeconds (integer) –
Retry the request after the specified time.
serviceCode (string) –
The code for the service in Service Quotas.
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.