KeyspacesStreams / Client / exceptions / InternalServerException
InternalServerException¶
- class KeyspacesStreams.Client.exceptions.InternalServerException¶
- The Amazon Keyspaces service encountered an unexpected error while processing the request. - This internal server error is not related to your request parameters. Retry your request after a brief delay. If the issue persists, contact Amazon Web Services Support with details of your request to help identify and resolve the problem. - Example- try: ... except client.exceptions.InternalServerException 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', 'Error': { 'Code': 'string', 'Message': 'string' } } - Structure- (dict) – - The Amazon Keyspaces service encountered an unexpected error while processing the request. - This internal server error is not related to your request parameters. Retry your request after a brief delay. If the issue persists, contact Amazon Web Services Support with details of your request to help identify and resolve the problem. - message (string) – - The service encountered an internal error. Try your request again. 
- 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.