Describes a state machine.
This operation is eventually consistent. The results are best effort and may not reflect very recent updates and changes.
sfn_describe_state_machine(stateMachineArn)[required] The Amazon Resource Name (ARN) of the state machine to describe.
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
)
)
svc$describe_state_machine( stateMachineArn = "string" )