diff --git a/packages/aws-cdk-lib/aws-stepfunctions/README.md b/packages/aws-cdk-lib/aws-stepfunctions/README.md index fc1660a77449e..d8d6c2e532014 100644 --- a/packages/aws-cdk-lib/aws-stepfunctions/README.md +++ b/packages/aws-cdk-lib/aws-stepfunctions/README.md @@ -595,9 +595,9 @@ const distributedMap = new sfn.DistributedMap(this, 'Distributed Map State', { distributedMap.itemProcessor(new sfn.Pass(this, 'Pass State')); ``` -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. +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. -In the following example, the execution type for the DistributedMap is set to `EXPRESS` based on the value specified for `mapExecutionType`. +In the following example, the execution type for the ItemProcessor in DistributedMap is set to `EXPRESS` based on the value specified for `mapExecutionType`. ```ts const distributedMap = new sfn.DistributedMap(this, 'DistributedMap', {