Learn R Programming

paws.application.integration (version 0.1.11)

sfn_describe_state_machine: Describes a state machine

Description

Describes a state machine.

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

Usage

sfn_describe_state_machine(stateMachineArn)

Arguments

stateMachineArn

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

Value

A list with the following syntax:

list(
  stateMachineArn = "string",
  name = "string",
  status = "ACTIVE"|"DELETING",
  definition = "string",
  roleArn = "string",
  type = "STANDARD"|"EXPRESS",
  creationDate = 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(
  stateMachineArn = "string"
)