interface StateMachineReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.StepFunctions.StateMachineReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsstepfunctions#StateMachineReference |
Java | software.amazon.awscdk.interfaces.stepfunctions.StateMachineReference |
Python | aws_cdk.interfaces.aws_stepfunctions.StateMachineReference |
TypeScript | aws-cdk-lib » interfaces » aws_stepfunctions » StateMachineReference |
A reference to a StateMachine resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_stepfunctions as interfaces_aws_stepfunctions } from 'aws-cdk-lib/interfaces';
const stateMachineReference: interfaces_aws_stepfunctions.StateMachineReference = {
stateMachineArn: 'stateMachineArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| state | string | The Arn of the StateMachine resource. |
stateMachineArn
Type:
string
The Arn of the StateMachine resource.

.NET
Go
Java
Python
TypeScript