Skip to content

Commit 6fb2941

Browse files
author
awstools
committed
feat(client-connect): Release Notes: 1) Analytics API enhancements: Added new ListAnalyticsDataLakeDataSets API. 2) Onboarding API Idempotency: Adds ClientToken to instance creation and management APIs to support idempotency.
1 parent d356927 commit 6fb2941

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+946
-217
lines changed

Diff for: clients/client-connect/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -1305,6 +1305,14 @@ ListAnalyticsDataAssociations
13051305

13061306
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/ListAnalyticsDataAssociationsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/ListAnalyticsDataAssociationsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/ListAnalyticsDataAssociationsCommandOutput/)
13071307

1308+
</details>
1309+
<details>
1310+
<summary>
1311+
ListAnalyticsDataLakeDataSets
1312+
</summary>
1313+
1314+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/ListAnalyticsDataLakeDataSetsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/ListAnalyticsDataLakeDataSetsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/ListAnalyticsDataLakeDataSetsCommandOutput/)
1315+
13081316
</details>
13091317
<details>
13101318
<summary>

Diff for: clients/client-connect/src/Connect.ts

+23
Original file line numberDiff line numberDiff line change
@@ -645,6 +645,11 @@ import {
645645
ListAnalyticsDataAssociationsCommandInput,
646646
ListAnalyticsDataAssociationsCommandOutput,
647647
} from "./commands/ListAnalyticsDataAssociationsCommand";
648+
import {
649+
ListAnalyticsDataLakeDataSetsCommand,
650+
ListAnalyticsDataLakeDataSetsCommandInput,
651+
ListAnalyticsDataLakeDataSetsCommandOutput,
652+
} from "./commands/ListAnalyticsDataLakeDataSetsCommand";
648653
import {
649654
ListApprovedOriginsCommand,
650655
ListApprovedOriginsCommandInput,
@@ -1465,6 +1470,7 @@ const commands = {
14651470
ImportPhoneNumberCommand,
14661471
ListAgentStatusesCommand,
14671472
ListAnalyticsDataAssociationsCommand,
1473+
ListAnalyticsDataLakeDataSetsCommand,
14681474
ListApprovedOriginsCommand,
14691475
ListAssociatedContactsCommand,
14701476
ListAuthenticationProfilesCommand,
@@ -3753,6 +3759,23 @@ export interface Connect {
37533759
cb: (err: any, data?: ListAnalyticsDataAssociationsCommandOutput) => void
37543760
): void;
37553761

3762+
/**
3763+
* @see {@link ListAnalyticsDataLakeDataSetsCommand}
3764+
*/
3765+
listAnalyticsDataLakeDataSets(
3766+
args: ListAnalyticsDataLakeDataSetsCommandInput,
3767+
options?: __HttpHandlerOptions
3768+
): Promise<ListAnalyticsDataLakeDataSetsCommandOutput>;
3769+
listAnalyticsDataLakeDataSets(
3770+
args: ListAnalyticsDataLakeDataSetsCommandInput,
3771+
cb: (err: any, data?: ListAnalyticsDataLakeDataSetsCommandOutput) => void
3772+
): void;
3773+
listAnalyticsDataLakeDataSets(
3774+
args: ListAnalyticsDataLakeDataSetsCommandInput,
3775+
options: __HttpHandlerOptions,
3776+
cb: (err: any, data?: ListAnalyticsDataLakeDataSetsCommandOutput) => void
3777+
): void;
3778+
37563779
/**
37573780
* @see {@link ListApprovedOriginsCommand}
37583781
*/

Diff for: clients/client-connect/src/ConnectClient.ts

+6
Original file line numberDiff line numberDiff line change
@@ -422,6 +422,10 @@ import {
422422
ListAnalyticsDataAssociationsCommandInput,
423423
ListAnalyticsDataAssociationsCommandOutput,
424424
} from "./commands/ListAnalyticsDataAssociationsCommand";
425+
import {
426+
ListAnalyticsDataLakeDataSetsCommandInput,
427+
ListAnalyticsDataLakeDataSetsCommandOutput,
428+
} from "./commands/ListAnalyticsDataLakeDataSetsCommand";
425429
import {
426430
ListApprovedOriginsCommandInput,
427431
ListApprovedOriginsCommandOutput,
@@ -1003,6 +1007,7 @@ export type ServiceInputTypes =
10031007
| ImportPhoneNumberCommandInput
10041008
| ListAgentStatusesCommandInput
10051009
| ListAnalyticsDataAssociationsCommandInput
1010+
| ListAnalyticsDataLakeDataSetsCommandInput
10061011
| ListApprovedOriginsCommandInput
10071012
| ListAssociatedContactsCommandInput
10081013
| ListAuthenticationProfilesCommandInput
@@ -1289,6 +1294,7 @@ export type ServiceOutputTypes =
12891294
| ImportPhoneNumberCommandOutput
12901295
| ListAgentStatusesCommandOutput
12911296
| ListAnalyticsDataAssociationsCommandOutput
1297+
| ListAnalyticsDataLakeDataSetsCommandOutput
12921298
| ListApprovedOriginsCommandOutput
12931299
| ListAssociatedContactsCommandOutput
12941300
| ListAuthenticationProfilesCommandOutput

Diff for: clients/client-connect/src/commands/AssociateApprovedOriginCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ export interface AssociateApprovedOriginCommandOutput extends __MetadataBearer {
3939
* const input = { // AssociateApprovedOriginRequest
4040
* InstanceId: "STRING_VALUE", // required
4141
* Origin: "STRING_VALUE", // required
42+
* ClientToken: "STRING_VALUE",
4243
* };
4344
* const command = new AssociateApprovedOriginCommand(input);
4445
* const response = await client.send(command);

Diff for: clients/client-connect/src/commands/AssociateBotCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ export interface AssociateBotCommandOutput extends __MetadataBearer {}
4646
* LexV2Bot: { // LexV2Bot
4747
* AliasArn: "STRING_VALUE",
4848
* },
49+
* ClientToken: "STRING_VALUE",
4950
* };
5051
* const command = new AssociateBotCommand(input);
5152
* const response = await client.send(command);

Diff for: clients/client-connect/src/commands/AssociateInstanceStorageConfigCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ export interface AssociateInstanceStorageConfigCommandOutput
7575
* FirehoseArn: "STRING_VALUE", // required
7676
* },
7777
* },
78+
* ClientToken: "STRING_VALUE",
7879
* };
7980
* const command = new AssociateInstanceStorageConfigCommand(input);
8081
* const response = await client.send(command);

Diff for: clients/client-connect/src/commands/AssociateLambdaFunctionCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ export interface AssociateLambdaFunctionCommandOutput extends __MetadataBearer {
4040
* const input = { // AssociateLambdaFunctionRequest
4141
* InstanceId: "STRING_VALUE", // required
4242
* FunctionArn: "STRING_VALUE", // required
43+
* ClientToken: "STRING_VALUE",
4344
* };
4445
* const command = new AssociateLambdaFunctionCommand(input);
4546
* const response = await client.send(command);

Diff for: clients/client-connect/src/commands/AssociateLexBotCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ export interface AssociateLexBotCommandOutput extends __MetadataBearer {}
4343
* Name: "STRING_VALUE", // required
4444
* LexRegion: "STRING_VALUE", // required
4545
* },
46+
* ClientToken: "STRING_VALUE",
4647
* };
4748
* const command = new AssociateLexBotCommand(input);
4849
* const response = await client.send(command);

Diff for: clients/client-connect/src/commands/AssociateSecurityKeyCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ export interface AssociateSecurityKeyCommandOutput extends AssociateSecurityKeyR
3939
* const input = { // AssociateSecurityKeyRequest
4040
* InstanceId: "STRING_VALUE", // required
4141
* Key: "STRING_VALUE", // required
42+
* ClientToken: "STRING_VALUE",
4243
* };
4344
* const command = new AssociateSecurityKeyCommand(input);
4445
* const response = await client.send(command);

Diff for: clients/client-connect/src/commands/BatchAssociateAnalyticsDataSetCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ export interface BatchAssociateAnalyticsDataSetCommandOutput
5757
* // TargetAccountId: "STRING_VALUE",
5858
* // ResourceShareId: "STRING_VALUE",
5959
* // ResourceShareArn: "STRING_VALUE",
60+
* // ResourceShareStatus: "STRING_VALUE",
6061
* // },
6162
* // ],
6263
* // Errors: [ // ErrorResults

Diff for: clients/client-connect/src/commands/CreateContactCommand.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ export interface CreateContactCommandOutput extends CreateContactResponse, __Met
3030

3131
/**
3232
* <important>
33-
* <p>Only the EMAIL channel is supported. The supported initiation
34-
* methods are: OUTBOUND, AGENT_REPLY, and FLOW.</p>
33+
* <p>Only the EMAIL channel is supported. The supported initiation methods are: OUTBOUND,
34+
* AGENT_REPLY, and FLOW.</p>
3535
* </important>
3636
* <p>Creates a new EMAIL contact. </p>
3737
* @example

Diff for: clients/client-connect/src/commands/DeleteInstanceCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ export interface DeleteInstanceCommandOutput extends __MetadataBearer {}
4343
* const client = new ConnectClient(config);
4444
* const input = { // DeleteInstanceRequest
4545
* InstanceId: "STRING_VALUE", // required
46+
* ClientToken: "STRING_VALUE",
4647
* };
4748
* const command = new DeleteInstanceCommand(input);
4849
* const response = await client.send(command);

Diff for: clients/client-connect/src/commands/DescribeAuthenticationProfileCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export interface DescribeAuthenticationProfileCommandOutput
3434

3535
/**
3636
* <p>This API is in preview release for Amazon Connect and is subject to change. To
37-
* request access to this API, contact Amazon Web Services Support.</p>
37+
* request access to this API, contact Amazon Web ServicesSupport.</p>
3838
* <p>Describes the target authentication profile.</p>
3939
* @example
4040
* Use a bare-bones client and the command you need to make an API call.

Diff for: clients/client-connect/src/commands/DescribeContactCommand.ts

+11-3
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,17 @@ export interface DescribeContactCommandOutput extends DescribeContactResponse, _
3232
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
3333
* <p>Describes the specified contact. </p>
3434
* <important>
35-
* <p>Contact information remains available in Amazon Connect for 24 months from the
36-
* InitiationTimestamp, and then it is deleted. Only contact information that is available in
37-
* Amazon Connect is returned by this API</p>
35+
* <ul>
36+
* <li>
37+
* <p>
38+
* <code>CustomerEndpoint</code> and <code>SystemEndpoint</code> are only populated for EMAIL contacts. </p>
39+
* </li>
40+
* <li>
41+
* <p>Contact information remains available in Amazon Connect for 24 months from the
42+
* <code>InitiationTimestamp</code>, and then it is deleted. Only contact information that is available in
43+
* Amazon Connect is returned by this API.</p>
44+
* </li>
45+
* </ul>
3846
* </important>
3947
* @example
4048
* Use a bare-bones client and the command you need to make an API call.

Diff for: clients/client-connect/src/commands/DisassociateApprovedOriginCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ export interface DisassociateApprovedOriginCommandOutput extends __MetadataBeare
3939
* const input = { // DisassociateApprovedOriginRequest
4040
* InstanceId: "STRING_VALUE", // required
4141
* Origin: "STRING_VALUE", // required
42+
* ClientToken: "STRING_VALUE",
4243
* };
4344
* const command = new DisassociateApprovedOriginCommand(input);
4445
* const response = await client.send(command);

Diff for: clients/client-connect/src/commands/DisassociateBotCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ export interface DisassociateBotCommandOutput extends __MetadataBearer {}
4646
* LexV2Bot: { // LexV2Bot
4747
* AliasArn: "STRING_VALUE",
4848
* },
49+
* ClientToken: "STRING_VALUE",
4950
* };
5051
* const command = new DisassociateBotCommand(input);
5152
* const response = await client.send(command);

Diff for: clients/client-connect/src/commands/DisassociateInstanceStorageConfigCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ export interface DisassociateInstanceStorageConfigCommandOutput extends __Metada
4444
* InstanceId: "STRING_VALUE", // required
4545
* AssociationId: "STRING_VALUE", // required
4646
* ResourceType: "CHAT_TRANSCRIPTS" || "CALL_RECORDINGS" || "SCHEDULED_REPORTS" || "MEDIA_STREAMS" || "CONTACT_TRACE_RECORDS" || "AGENT_EVENTS" || "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" || "ATTACHMENTS" || "CONTACT_EVALUATIONS" || "SCREEN_RECORDINGS" || "REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS" || "REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS" || "EMAIL_MESSAGES", // required
47+
* ClientToken: "STRING_VALUE",
4748
* };
4849
* const command = new DisassociateInstanceStorageConfigCommand(input);
4950
* const response = await client.send(command);

Diff for: clients/client-connect/src/commands/DisassociateLambdaFunctionCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ export interface DisassociateLambdaFunctionCommandOutput extends __MetadataBeare
4040
* const input = { // DisassociateLambdaFunctionRequest
4141
* InstanceId: "STRING_VALUE", // required
4242
* FunctionArn: "STRING_VALUE", // required
43+
* ClientToken: "STRING_VALUE",
4344
* };
4445
* const command = new DisassociateLambdaFunctionCommand(input);
4546
* const response = await client.send(command);

Diff for: clients/client-connect/src/commands/DisassociateLexBotCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ export interface DisassociateLexBotCommandOutput extends __MetadataBearer {}
4141
* InstanceId: "STRING_VALUE", // required
4242
* BotName: "STRING_VALUE", // required
4343
* LexRegion: "STRING_VALUE", // required
44+
* ClientToken: "STRING_VALUE",
4445
* };
4546
* const command = new DisassociateLexBotCommand(input);
4647
* const response = await client.send(command);

Diff for: clients/client-connect/src/commands/DisassociateSecurityKeyCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ export interface DisassociateSecurityKeyCommandOutput extends __MetadataBearer {
3939
* const input = { // DisassociateSecurityKeyRequest
4040
* InstanceId: "STRING_VALUE", // required
4141
* AssociationId: "STRING_VALUE", // required
42+
* ClientToken: "STRING_VALUE",
4243
* };
4344
* const command = new DisassociateSecurityKeyCommand(input);
4445
* const response = await client.send(command);

Diff for: clients/client-connect/src/commands/ImportPhoneNumberCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export interface ImportPhoneNumberCommandOutput extends ImportPhoneNumberRespons
4545
* <p>For example, if you already have 99 claimed or imported numbers and a service level quota of
4646
* 99 phone numbers, and in any 180 day period you release 99, claim 99, and then release 99, you
4747
* will have exceeded the 200% limit. At that point you are blocked from claiming any more numbers
48-
* until you open an Amazon Web Services Support ticket. </p>
48+
* until you open an Amazon Web ServicesSupport ticket. </p>
4949
* @example
5050
* Use a bare-bones client and the command you need to make an API call.
5151
* ```javascript

Diff for: clients/client-connect/src/commands/ListAnalyticsDataAssociationsCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ export interface ListAnalyticsDataAssociationsCommandOutput
5656
* // TargetAccountId: "STRING_VALUE",
5757
* // ResourceShareId: "STRING_VALUE",
5858
* // ResourceShareArn: "STRING_VALUE",
59+
* // ResourceShareStatus: "STRING_VALUE",
5960
* // },
6061
* // ],
6162
* // NextToken: "STRING_VALUE",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
// smithy-typescript generated code
2+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
3+
import { getSerdePlugin } from "@smithy/middleware-serde";
4+
import { Command as $Command } from "@smithy/smithy-client";
5+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
6+
7+
import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
8+
import { commonParams } from "../endpoint/EndpointParameters";
9+
import { ListAnalyticsDataLakeDataSetsRequest, ListAnalyticsDataLakeDataSetsResponse } from "../models/models_1";
10+
import {
11+
de_ListAnalyticsDataLakeDataSetsCommand,
12+
se_ListAnalyticsDataLakeDataSetsCommand,
13+
} from "../protocols/Aws_restJson1";
14+
15+
/**
16+
* @public
17+
*/
18+
export type { __MetadataBearer };
19+
export { $Command };
20+
/**
21+
* @public
22+
*
23+
* The input for {@link ListAnalyticsDataLakeDataSetsCommand}.
24+
*/
25+
export interface ListAnalyticsDataLakeDataSetsCommandInput extends ListAnalyticsDataLakeDataSetsRequest {}
26+
/**
27+
* @public
28+
*
29+
* The output of {@link ListAnalyticsDataLakeDataSetsCommand}.
30+
*/
31+
export interface ListAnalyticsDataLakeDataSetsCommandOutput
32+
extends ListAnalyticsDataLakeDataSetsResponse,
33+
__MetadataBearer {}
34+
35+
/**
36+
* <p>Lists the data lake datasets available to associate with for a given Amazon Connect
37+
* instance.</p>
38+
* @example
39+
* Use a bare-bones client and the command you need to make an API call.
40+
* ```javascript
41+
* import { ConnectClient, ListAnalyticsDataLakeDataSetsCommand } from "@aws-sdk/client-connect"; // ES Modules import
42+
* // const { ConnectClient, ListAnalyticsDataLakeDataSetsCommand } = require("@aws-sdk/client-connect"); // CommonJS import
43+
* const client = new ConnectClient(config);
44+
* const input = { // ListAnalyticsDataLakeDataSetsRequest
45+
* InstanceId: "STRING_VALUE", // required
46+
* NextToken: "STRING_VALUE",
47+
* MaxResults: Number("int"),
48+
* };
49+
* const command = new ListAnalyticsDataLakeDataSetsCommand(input);
50+
* const response = await client.send(command);
51+
* // { // ListAnalyticsDataLakeDataSetsResponse
52+
* // Results: [ // AnalyticsDataSetsResults
53+
* // { // AnalyticsDataSetsResult
54+
* // DataSetId: "STRING_VALUE",
55+
* // DataSetName: "STRING_VALUE",
56+
* // },
57+
* // ],
58+
* // NextToken: "STRING_VALUE",
59+
* // };
60+
*
61+
* ```
62+
*
63+
* @param ListAnalyticsDataLakeDataSetsCommandInput - {@link ListAnalyticsDataLakeDataSetsCommandInput}
64+
* @returns {@link ListAnalyticsDataLakeDataSetsCommandOutput}
65+
* @see {@link ListAnalyticsDataLakeDataSetsCommandInput} for command's `input` shape.
66+
* @see {@link ListAnalyticsDataLakeDataSetsCommandOutput} for command's `response` shape.
67+
* @see {@link ConnectClientResolvedConfig | config} for ConnectClient's `config` shape.
68+
*
69+
* @throws {@link InternalServiceException} (server fault)
70+
* <p>Request processing failed because of an error or failure with the service.</p>
71+
*
72+
* @throws {@link InvalidParameterException} (client fault)
73+
* <p>One or more of the specified parameters are not valid.</p>
74+
*
75+
* @throws {@link InvalidRequestException} (client fault)
76+
* <p>The request is not valid.</p>
77+
*
78+
* @throws {@link ResourceNotFoundException} (client fault)
79+
* <p>The specified resource was not found.</p>
80+
*
81+
* @throws {@link ThrottlingException} (client fault)
82+
* <p>The throttling limit has been exceeded.</p>
83+
*
84+
* @throws {@link ConnectServiceException}
85+
* <p>Base exception class for all service exceptions from Connect service.</p>
86+
*
87+
* @public
88+
*/
89+
export class ListAnalyticsDataLakeDataSetsCommand extends $Command
90+
.classBuilder<
91+
ListAnalyticsDataLakeDataSetsCommandInput,
92+
ListAnalyticsDataLakeDataSetsCommandOutput,
93+
ConnectClientResolvedConfig,
94+
ServiceInputTypes,
95+
ServiceOutputTypes
96+
>()
97+
.ep(commonParams)
98+
.m(function (this: any, Command: any, cs: any, config: ConnectClientResolvedConfig, o: any) {
99+
return [
100+
getSerdePlugin(config, this.serialize, this.deserialize),
101+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
102+
];
103+
})
104+
.s("AmazonConnectService", "ListAnalyticsDataLakeDataSets", {})
105+
.n("ConnectClient", "ListAnalyticsDataLakeDataSetsCommand")
106+
.f(void 0, void 0)
107+
.ser(se_ListAnalyticsDataLakeDataSetsCommand)
108+
.de(de_ListAnalyticsDataLakeDataSetsCommand)
109+
.build() {
110+
/** @internal type navigation helper, not in runtime. */
111+
protected declare static __types: {
112+
api: {
113+
input: ListAnalyticsDataLakeDataSetsRequest;
114+
output: ListAnalyticsDataLakeDataSetsResponse;
115+
};
116+
sdk: {
117+
input: ListAnalyticsDataLakeDataSetsCommandInput;
118+
output: ListAnalyticsDataLakeDataSetsCommandOutput;
119+
};
120+
};
121+
}

Diff for: clients/client-connect/src/commands/ListAuthenticationProfilesCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export interface ListAuthenticationProfilesCommandOutput extends ListAuthenticat
2929

3030
/**
3131
* <p>This API is in preview release for Amazon Connect and is subject to change. To
32-
* request access to this API, contact Amazon Web Services Support.</p>
32+
* request access to this API, contact Amazon Web ServicesSupport.</p>
3333
* <p>Provides summary information about the authentication profiles in a specified Amazon Connect instance.</p>
3434
* @example
3535
* Use a bare-bones client and the command you need to make an API call.

Diff for: clients/client-connect/src/commands/ListQueuesCommand.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
66

77
import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
88
import { commonParams } from "../endpoint/EndpointParameters";
9-
import { ListQueuesRequest, ListQueuesResponse } from "../models/models_1";
9+
import { ListQueuesRequest } from "../models/models_1";
10+
import { ListQueuesResponse } from "../models/models_2";
1011
import { de_ListQueuesCommand, se_ListQueuesCommand } from "../protocols/Aws_restJson1";
1112

1213
/**

0 commit comments

Comments
 (0)