StateMachineReference

class aws_cdk.aws_stepfunctions.StateMachineReference(*, state_machine_arn)

Bases: object

A reference to a StateMachine resource.

Parameters:

state_machine_arn (str) – The Arn of the StateMachine resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_stepfunctions as stepfunctions

state_machine_reference = stepfunctions.StateMachineReference(
    state_machine_arn="stateMachineArn"
)

Attributes

state_machine_arn

The Arn of the StateMachine resource.