GreengrassV2 / Client / exceptions / ServiceQuotaExceededException

ServiceQuotaExceededException#

class GreengrassV2.Client.exceptions.ServiceQuotaExceededException#

Your request exceeds a service quota. For example, you might have the maximum number of components that you can create.

Example

try:
  ...
except client.exceptions.ServiceQuotaExceededException 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',
    'resourceId': 'string',
    'resourceType': 'string',
    'quotaCode': 'string',
    'serviceCode': 'string',
    'Error': {
        'Code': 'string',
        'Message': 'string'
    }
}

Structure

  • (dict) –

    Your request exceeds a service quota. For example, you might have the maximum number of components that you can create.

    • message (string) –

    • resourceId (string) –

      The ID of the resource that exceeds the service quota.

    • resourceType (string) –

      The type of the resource that exceeds the service quota.

    • quotaCode (string) –

      The code for the quota in Service Quotas.

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