Lambda / Client / exceptions / DurableExecutionAlreadyStartedException
DurableExecutionAlreadyStartedException¶
- class Lambda.Client.exceptions.DurableExecutionAlreadyStartedException¶
The durable execution with the specified name has already been started. Each durable execution name must be unique within the function. Use a different name or check the status of the existing execution.
Example
try: ... except client.exceptions.DurableExecutionAlreadyStartedException 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
{ 'Type': 'string', 'Message': 'string', 'Error': { 'Code': 'string', 'Message': 'string' } }
Structure
(dict) –
The durable execution with the specified name has already been started. Each durable execution name must be unique within the function. Use a different name or check the status of the existing execution.
Type (string) –
The exception type.
Message (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.