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

.NET
Go
Java
Python
TypeScript