GreengrassV2 / Client / exceptions / ThrottlingException

ThrottlingException#

class GreengrassV2.Client.exceptions.ThrottlingException#

Your request exceeded a request rate quota. For example, you might have exceeded the amount of times that you can retrieve device or deployment status per second.

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',
    'serviceCode': 'string',
    'retryAfterSeconds': 123,
    'Error': {
        'Code': 'string',
        'Message': 'string'
    }
}

Structure

  • (dict) –

    Your request exceeded a request rate quota. For example, you might have exceeded the amount of times that you can retrieve device or deployment status per second.

    • message (string) –

    • quotaCode (string) –

      The code for the quota in Service Quotas.

    • serviceCode (string) –

      The code for the service in Service Quotas.

    • retryAfterSeconds (integer) –

      The amount of time to wait before you retry the request.

    • 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.