We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
aws-sdk
1 parent 73f281c commit b0e0353Copy full SHA for b0e0353
packages/aws-cdk-lib/aws-stepfunctions-tasks/lib/aws-sdk/call-aws-service.ts
@@ -118,6 +118,9 @@ export class CallAwsService extends sfn.TaskStateBase {
118
service = service.toLowerCase();
119
}
120
121
+ // The pattern here is: "arn:aws:states:::aws-sdk:serviceName:apiAction.[serviceIntegrationPattern]"
122
+ // See here: https://docs.aws.amazon.com/step-functions/latest/dg/supported-services-awssdk.html
123
+ // This does not change with sdk upgrades, TT:P125388388
124
return {
125
Resource: integrationResourceArn(
126
'aws-sdk',
0 commit comments