OpenSearchServiceServerless / Client / exceptions / ServiceQuotaExceededException
ServiceQuotaExceededException¶
- class OpenSearchServiceServerless.Client.exceptions.ServiceQuotaExceededException¶
- Thrown when you attempt to create more resources than the service allows based on service quotas. - Example- try: ... except client.exceptions.ServiceQuotaExceededException as e: print(e.response) - response¶
- The parsed error response. All exceptions have a top level - Errorkey 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', 'serviceCode': 'string', 'quotaCode': 'string', 'Error': { 'Code': 'string', 'Message': 'string' } } - Structure- (dict) – - Thrown when you attempt to create more resources than the service allows based on service quotas. - message (string) – - Description of the error. 
- resourceId (string) – - Identifier of the resource affected. 
- resourceType (string) – - Type of the resource affected. 
- serviceCode (string) – - Service Quotas requirement to identify originating service. 
- quotaCode (string) – - Service Quotas requirement to identify originating 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.