SSM / Client / exceptions / ServiceQuotaExceededException

ServiceQuotaExceededException

class SSM.Client.exceptions.ServiceQuotaExceededException

The request exceeds the service quota. Service quotas, also referred to as limits, are the maximum number of service resources or operations for your Amazon Web Services account.

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

    The request exceeds the service quota. Service quotas, also referred to as limits, are the maximum number of service resources or operations for your Amazon Web Services account.

    • Message (string) –

    • ResourceId (string) –

      The unique ID of the resource referenced in the failed request.

    • ResourceType (string) –

      The resource type of the resource referenced in the failed request.

    • QuotaCode (string) –

      The quota code recognized by the Amazon Web Services Service Quotas service.

    • ServiceCode (string) –

      The code for the Amazon Web Services service that owns the quota.

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