Learn R Programming

paws.application.integration (version 0.1.11)

sfn_describe_state_machine_for_execution: Describes the state machine associated with a specific execution

Description

Describes the state machine associated with a specific 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_state_machine_for_execution(executionArn)

Arguments

executionArn

[required] The Amazon Resource Name (ARN) of the execution you want state machine information for.

Value

A list with the following syntax:

list(
  stateMachineArn = "string",
  name = "string",
  definition = "string",
  roleArn = "string",
  updateDate = as.POSIXct(
    "2015-01-01"
  ),
  loggingConfiguration = list(
    level = "ALL"|"ERROR"|"FATAL"|"OFF",
    includeExecutionData = TRUE|FALSE,
    destinations = list(
      list(
        cloudWatchLogsLogGroup = list(
          logGroupArn = "string"
        )
      )
    )
  ),
  tracingConfiguration = list(
    enabled = TRUE|FALSE
  )
)

Request syntax

svc$describe_state_machine_for_execution(
  executionArn = "string"
)