Stop Durable Execution
| lambda_stop_durable_execution | R Documentation |
Stops a running durable execution¶
Description¶
Stops a running durable execution. The execution transitions to STOPPED status and cannot be resumed. Any in-progress operations are terminated.
Usage¶
lambda_stop_durable_execution(DurableExecutionArn, Error)
Arguments¶
DurableExecutionArn |
[required] The Amazon Resource Name (ARN) of the durable execution. |
Error |
Optional error details explaining why the execution is being stopped. |
Value¶
A list with the following syntax:
list(
StopTimestamp = as.POSIXct(
"2015-01-01"
)
)
Request syntax¶
svc$stop_durable_execution(
DurableExecutionArn = "string",
Error = list(
ErrorMessage = "string",
ErrorType = "string",
ErrorData = "string",
StackTrace = list(
"string"
)
)
)