WellArchitected / Client / exceptions / ServiceQuotaExceededException
ServiceQuotaExceededException#
- class WellArchitected.Client.exceptions.ServiceQuotaExceededException#
The user has reached their resource quota.
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 user has reached their resource quota.
Message (string) –
Description of the error.
ResourceId (string) –
Identifier of the resource affected.
ResourceType (string) –
Type of the resource affected.
QuotaCode (string) –
Service Quotas requirement to identify originating quota.
ServiceCode (string) –
Service Quotas requirement to identify originating service.
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.