GetDurableExecutionResponse

The response from the GetDurableExecution operation, containing detailed information about the durable execution.

Types

Link copied to clipboard
class Builder
Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The Amazon Resource Name (ARN) of the durable execution.

Link copied to clipboard

The name of the durable execution. This is either the name you provided when invoking the function, or a system-generated unique identifier if no name was provided.

Link copied to clipboard

The date and time when the durable execution ended, in Unix timestamp format. This field is only present if the execution has completed (status is SUCCEEDED, FAILED, TIMED_OUT, or STOPPED).

Link copied to clipboard

Error information if the durable execution failed. This field is only present when the execution status is FAILED, TIMED_OUT, or STOPPED. The combined size of all error fields is limited to 256 KB.

Link copied to clipboard

The Amazon Resource Name (ARN) of the Lambda function that was invoked to start this durable execution.

Link copied to clipboard

The JSON input payload that was provided when the durable execution was started. For asynchronous invocations, this is limited to 256 KB. For synchronous invocations, this can be up to 6 MB.

Link copied to clipboard

The JSON result returned by the durable execution if it completed successfully. This field is only present when the execution status is SUCCEEDED. The result is limited to 256 KB.

Link copied to clipboard

The date and time when the durable execution started, in Unix timestamp format.

Link copied to clipboard

The current status of the durable execution. Valid values are RUNNING, SUCCEEDED, FAILED, TIMED_OUT, and STOPPED.

Link copied to clipboard

The trace headers associated with the durable execution.

Link copied to clipboard

The version of the Lambda function that was invoked for this durable execution. This ensures that all replays during the execution use the same function version.

Functions

Link copied to clipboard
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String