interface ExecutionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.States.ExecutionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsstates#ExecutionReference |
Java | software.amazon.awscdk.interfaces.states.ExecutionReference |
Python | aws_cdk.interfaces.aws_states.ExecutionReference |
TypeScript | aws-cdk-lib » interfaces » aws_states » ExecutionReference |
A reference to a Execution resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_states as interfaces_states } from 'aws-cdk-lib/interfaces';
const executionReference: interfaces_states.ExecutionReference = {
executionArn: 'executionArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| execution | string | The ExecutionArn of the Execution resource. |
executionArn
Type:
string
The ExecutionArn of the Execution resource.

.NET
Go
Java
Python
TypeScript