From 5333c72a66955995a65cb365c6a788b82f02afd2 Mon Sep 17 00:00:00 2001 From: Roman <491247+moltar@users.noreply.github.com> Date: Thu, 4 Nov 2021 06:31:37 +0700 Subject: [PATCH] docs(aws-stepfunctions-tasks): fixes action example to be camelCase (#17292) > Use camelCase for actions and PascalCase for parameter names. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* --- packages/@aws-cdk/aws-stepfunctions-tasks/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@aws-cdk/aws-stepfunctions-tasks/README.md b/packages/@aws-cdk/aws-stepfunctions-tasks/README.md index cedf89eefe07c..2f5d463067a35 100644 --- a/packages/@aws-cdk/aws-stepfunctions-tasks/README.md +++ b/packages/@aws-cdk/aws-stepfunctions-tasks/README.md @@ -348,7 +348,7 @@ action name does not match with the API service/action name: ```ts const listBuckets = new tasks.CallAwsService(this, 'ListBuckets', { service: 's3', - action: 'ListBuckets', + action: 'listBuckets', iamResources: ['*'], iamAction: 's3:ListAllMyBuckets', });