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.
1 parent 185406d commit 511f2f6Copy full SHA for 511f2f6
packages/core/src/stepFunctions/workflowStudio/types.ts
@@ -2,7 +2,7 @@
2
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
* SPDX-License-Identifier: Apache-2.0
4
*/
5
-import { IAM } from 'aws-sdk'
+import * as IAM from '@aws-sdk/client-iam'
6
import * as StepFunctions from '@aws-sdk/client-sfn'
7
import * as vscode from 'vscode'
8
@@ -94,7 +94,7 @@ export enum ApiAction {
94
}
95
96
type ApiCallRequestMapping = {
97
- [ApiAction.IAMListRoles]: IAM.ListRolesRequest
+ [ApiAction.IAMListRoles]: IAM.ListRolesCommandInput
98
[ApiAction.SFNTestState]: StepFunctions.TestStateInput
99
100
0 commit comments