CloudWatchLogs / Client / exceptions / DataAlreadyAcceptedException
DataAlreadyAcceptedException¶
- class CloudWatchLogs.Client.exceptions.DataAlreadyAcceptedException¶
- The event was already logged. - Warning- PutLogEventsactions are now always accepted and never return- DataAlreadyAcceptedExceptionregardless of whether a given batch of log events has already been accepted.- Example- try: ... except client.exceptions.DataAlreadyAcceptedException 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- { 'expectedSequenceToken': 'string', 'Error': { 'Code': 'string', 'Message': 'string' } } - Structure- (dict) – - The event was already logged. - Warning- PutLogEventsactions are now always accepted and never return- DataAlreadyAcceptedExceptionregardless of whether a given batch of log events has already been accepted.- expectedSequenceToken (string) – 
- 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.