interface ActivityReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.StepFunctions.ActivityReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsstepfunctions#ActivityReference |
Java | software.amazon.awscdk.interfaces.stepfunctions.ActivityReference |
Python | aws_cdk.interfaces.aws_stepfunctions.ActivityReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_stepfunctions } from 'aws-cdk-lib/interfaces';
const activityReference: interfaces_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