Learn R Programming

paws.application.integration (version 0.1.11)

sfn_describe_execution: Describes an execution

Description

Describes an execution.

This operation is eventually consistent. The results are best effort and may not reflect very recent updates and changes.

This API action is not supported by EXPRESS state machines.

Usage

sfn_describe_execution(executionArn)

Arguments

executionArn

[required] The Amazon Resource Name (ARN) of the execution to describe.

Value

A list with the following syntax:

list(
  executionArn = "string",
  stateMachineArn = "string",
  name = "string",
  status = "RUNNING"|"SUCCEEDED"|"FAILED"|"TIMED_OUT"|"ABORTED",
  startDate = as.POSIXct(
    "2015-01-01"
  ),
  stopDate = as.POSIXct(
    "2015-01-01"
  ),
  input = "string",
  inputDetails = list(
    included = TRUE|FALSE
  ),
  output = "string",
  outputDetails = list(
    included = TRUE|FALSE
  ),
  traceHeader = "string"
)

Request syntax

svc$describe_execution(
  executionArn = "string"
)