Skip to content

Commit d631069

Browse files
committed
chore: docs update
1 parent 7bb3d86 commit d631069

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • packages/aws-cdk-lib/aws-stepfunctions

packages/aws-cdk-lib/aws-stepfunctions/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -595,9 +595,9 @@ const distributedMap = new sfn.DistributedMap(this, 'Distributed Map State', {
595595
distributedMap.itemProcessor(new sfn.Pass(this, 'Pass State'));
596596
```
597597

598-
If you want to specify the execution type for the DistributedMap, you must set the `mapExecutionType` property in the `DistributedMap` class. When using the `DistributedMap` class, the `ProcessorConfig.executionType` property is ignored.
598+
If you want to specify the execution type for the ItemProcessor in DistributedMap, you must set the `mapExecutionType` property in the `DistributedMap` class. When using the `DistributedMap` class, the `ProcessorConfig.executionType` property is ignored.
599599

600-
In the following example, the execution type for the DistributedMap is set to `EXPRESS` based on the value specified for `mapExecutionType`.
600+
In the following example, the execution type for the ItemProcessor in DistributedMap is set to `EXPRESS` based on the value specified for `mapExecutionType`.
601601

602602
```ts
603603
const distributedMap = new sfn.DistributedMap(this, 'DistributedMap', {

0 commit comments

Comments
 (0)