IoTFleetWise / Client / exceptions / ThrottlingException

ThrottlingException#

class IoTFleetWise.Client.exceptions.ThrottlingException#

The request couldn’t be completed due to throttling.

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) –

    The request couldn’t be completed due to throttling.

    • message (string) –

    • quotaCode (string) –

      The quota identifier of the applied throttling rules for this request.

    • serviceCode (string) –

      The code for the service that couldn’t be completed due to throttling.

    • retryAfterSeconds (integer) –

      The number of seconds to wait before retrying the command.

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