interface StateMachineAliasReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.StepFunctions.StateMachineAliasReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsstepfunctions#StateMachineAliasReference |
Java | software.amazon.awscdk.interfaces.stepfunctions.StateMachineAliasReference |
Python | aws_cdk.interfaces.aws_stepfunctions.StateMachineAliasReference |
TypeScript | aws-cdk-lib » interfaces » aws_stepfunctions » StateMachineAliasReference |
A reference to a StateMachineAlias 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 stateMachineAliasReference: interfaces_aws_stepfunctions.StateMachineAliasReference = {
stateMachineAliasArn: 'stateMachineAliasArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| state | string | The Arn of the StateMachineAlias resource. |
stateMachineAliasArn
Type:
string
The Arn of the StateMachineAlias resource.

.NET
Go
Java
Python
TypeScript