Get Durable Execution
| lambda_get_durable_execution | R Documentation |
Retrieves detailed information about a specific durable execution, including its current status, input payload, result or error information, and execution metadata such as start time and usage statistics¶
Description¶
Retrieves detailed information about a specific durable execution, including its current status, input payload, result or error information, and execution metadata such as start time and usage statistics.
Usage¶
lambda_get_durable_execution(DurableExecutionArn)
Arguments¶
DurableExecutionArn |
[required] The Amazon Resource Name (ARN) of the durable execution. |
Value¶
A list with the following syntax:
list(
DurableExecutionArn = "string",
DurableExecutionName = "string",
FunctionArn = "string",
InputPayload = "string",
Result = "string",
Error = list(
ErrorMessage = "string",
ErrorType = "string",
ErrorData = "string",
StackTrace = list(
"string"
)
),
StartTimestamp = as.POSIXct(
"2015-01-01"
),
Status = "RUNNING"|"SUCCEEDED"|"FAILED"|"TIMED_OUT"|"STOPPED",
EndTimestamp = as.POSIXct(
"2015-01-01"
),
Version = "string",
TraceHeader = list(
XAmznTraceId = "string"
)
)
Request syntax¶
svc$get_durable_execution(
DurableExecutionArn = "string"
)