interface ActivityReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.StepFunctions.ActivityReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsstepfunctions#ActivityReference |
Java | software.amazon.awscdk.services.stepfunctions.ActivityReference |
Python | aws_cdk.aws_stepfunctions.ActivityReference |
TypeScript | aws-cdk-lib » aws_stepfunctions » ActivityReference |
A reference to a Activity 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 stepfunctions } from 'aws-cdk-lib';
const activityReference: stepfunctions.ActivityReference = {
activityArn: 'activityArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| activity | string | The Arn of the Activity resource. |
activityArn
Type:
string
The Arn of the Activity resource.

.NET
Go
Java
Python
TypeScript