From c5b8b0c2ed9f4e107568c8ff663a5673f7163a9e Mon Sep 17 00:00:00 2001 From: maz Date: Tue, 4 Jun 2024 10:45:29 +0900 Subject: [PATCH] chore: docs update --- packages/aws-cdk-lib/aws-stepfunctions/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/aws-cdk-lib/aws-stepfunctions/README.md b/packages/aws-cdk-lib/aws-stepfunctions/README.md index fc1660a77449e..85534fea3c68a 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 the 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 the DistributedMap is set to `EXPRESS` based on the value specified for `mapExecutionType`. ```ts const distributedMap = new sfn.DistributedMap(this, 'DistributedMap', {