Skip to content

Commit c6e07aa

Browse files
author
awstools
committed
feat(client-connect): Added DeleteContactFlowVersion API and the CAMPAIGN flow type
1 parent 757843c commit c6e07aa

23 files changed

+464
-147
lines changed

clients/client-connect/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -673,6 +673,14 @@ DeleteContactFlowModule
673673

674674
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/DeleteContactFlowModuleCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/DeleteContactFlowModuleCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/DeleteContactFlowModuleCommandOutput/)
675675

676+
</details>
677+
<details>
678+
<summary>
679+
DeleteContactFlowVersion
680+
</summary>
681+
682+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/DeleteContactFlowVersionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/DeleteContactFlowVersionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/DeleteContactFlowVersionCommandOutput/)
683+
676684
</details>
677685
<details>
678686
<summary>

clients/client-connect/src/Connect.ts

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,11 @@ import {
266266
DeleteContactFlowModuleCommandInput,
267267
DeleteContactFlowModuleCommandOutput,
268268
} from "./commands/DeleteContactFlowModuleCommand";
269+
import {
270+
DeleteContactFlowVersionCommand,
271+
DeleteContactFlowVersionCommandInput,
272+
DeleteContactFlowVersionCommandOutput,
273+
} from "./commands/DeleteContactFlowVersionCommand";
269274
import {
270275
DeleteEmailAddressCommand,
271276
DeleteEmailAddressCommandInput,
@@ -1381,6 +1386,7 @@ const commands = {
13811386
DeleteContactEvaluationCommand,
13821387
DeleteContactFlowCommand,
13831388
DeleteContactFlowModuleCommand,
1389+
DeleteContactFlowVersionCommand,
13841390
DeleteEmailAddressCommand,
13851391
DeleteEvaluationFormCommand,
13861392
DeleteHoursOfOperationCommand,
@@ -2497,6 +2503,23 @@ export interface Connect {
24972503
cb: (err: any, data?: DeleteContactFlowModuleCommandOutput) => void
24982504
): void;
24992505

2506+
/**
2507+
* @see {@link DeleteContactFlowVersionCommand}
2508+
*/
2509+
deleteContactFlowVersion(
2510+
args: DeleteContactFlowVersionCommandInput,
2511+
options?: __HttpHandlerOptions
2512+
): Promise<DeleteContactFlowVersionCommandOutput>;
2513+
deleteContactFlowVersion(
2514+
args: DeleteContactFlowVersionCommandInput,
2515+
cb: (err: any, data?: DeleteContactFlowVersionCommandOutput) => void
2516+
): void;
2517+
deleteContactFlowVersion(
2518+
args: DeleteContactFlowVersionCommandInput,
2519+
options: __HttpHandlerOptions,
2520+
cb: (err: any, data?: DeleteContactFlowVersionCommandOutput) => void
2521+
): void;
2522+
25002523
/**
25012524
* @see {@link DeleteEmailAddressCommand}
25022525
*/

clients/client-connect/src/ConnectClient.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,10 @@ import {
208208
DeleteContactFlowModuleCommandInput,
209209
DeleteContactFlowModuleCommandOutput,
210210
} from "./commands/DeleteContactFlowModuleCommand";
211+
import {
212+
DeleteContactFlowVersionCommandInput,
213+
DeleteContactFlowVersionCommandOutput,
214+
} from "./commands/DeleteContactFlowVersionCommand";
211215
import { DeleteEmailAddressCommandInput, DeleteEmailAddressCommandOutput } from "./commands/DeleteEmailAddressCommand";
212216
import {
213217
DeleteEvaluationFormCommandInput,
@@ -920,6 +924,7 @@ export type ServiceInputTypes =
920924
| DeleteContactEvaluationCommandInput
921925
| DeleteContactFlowCommandInput
922926
| DeleteContactFlowModuleCommandInput
927+
| DeleteContactFlowVersionCommandInput
923928
| DeleteEmailAddressCommandInput
924929
| DeleteEvaluationFormCommandInput
925930
| DeleteHoursOfOperationCommandInput
@@ -1205,6 +1210,7 @@ export type ServiceOutputTypes =
12051210
| DeleteContactEvaluationCommandOutput
12061211
| DeleteContactFlowCommandOutput
12071212
| DeleteContactFlowModuleCommandOutput
1213+
| DeleteContactFlowVersionCommandOutput
12081214
| DeleteEmailAddressCommandOutput
12091215
| DeleteEvaluationFormCommandOutput
12101216
| DeleteHoursOfOperationCommandOutput

clients/client-connect/src/commands/AssociateUserProficienciesCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export interface AssociateUserProficienciesCommandInput extends AssociateUserPro
2828
export interface AssociateUserProficienciesCommandOutput extends __MetadataBearer {}
2929

3030
/**
31-
* <p>>Associates a set of proficiencies with a user.</p>
31+
* <p>Associates a set of proficiencies with a user.</p>
3232
* @example
3333
* Use a bare-bones client and the command you need to make an API call.
3434
* ```javascript

clients/client-connect/src/commands/CreateContactFlowCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export interface CreateContactFlowCommandOutput extends CreateContactFlowRespons
4040
* const input = { // CreateContactFlowRequest
4141
* InstanceId: "STRING_VALUE", // required
4242
* Name: "STRING_VALUE", // required
43-
* Type: "CONTACT_FLOW" || "CUSTOMER_QUEUE" || "CUSTOMER_HOLD" || "CUSTOMER_WHISPER" || "AGENT_HOLD" || "AGENT_WHISPER" || "OUTBOUND_WHISPER" || "AGENT_TRANSFER" || "QUEUE_TRANSFER", // required
43+
* Type: "CONTACT_FLOW" || "CUSTOMER_QUEUE" || "CUSTOMER_HOLD" || "CUSTOMER_WHISPER" || "AGENT_HOLD" || "AGENT_WHISPER" || "OUTBOUND_WHISPER" || "AGENT_TRANSFER" || "QUEUE_TRANSFER" || "CAMPAIGN", // required
4444
* Description: "STRING_VALUE",
4545
* Content: "STRING_VALUE", // required
4646
* Status: "PUBLISHED" || "SAVED",

clients/client-connect/src/commands/CreateContactFlowVersionCommand.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,10 @@ export interface CreateContactFlowVersionCommandOutput extends CreateContactFlow
2929

3030
/**
3131
* <p>Publishes a new version of the flow provided. Versions are immutable and monotonically
32-
* increasing. If a version of the same flow content already exists, no new version is created and
33-
* instead the existing version number is returned. If the <code>FlowContentSha256</code> provided
34-
* is different from the <code>FlowContentSha256</code> of the <code>$LATEST</code> published flow
35-
* content, then an error is returned. This API only supports creating versions for flows of type
36-
* <code>Campaign</code>.</p>
32+
* increasing. If the <code>FlowContentSha256</code> provided is different from the
33+
* <code>FlowContentSha256</code> of the <code>$LATEST</code> published flow content, then an error
34+
* is returned. This API only supports creating versions for flows of type
35+
* <code>Campaign</code>.</p>
3736
* @example
3837
* Use a bare-bones client and the command you need to make an API call.
3938
* ```javascript
@@ -45,6 +44,7 @@ export interface CreateContactFlowVersionCommandOutput extends CreateContactFlow
4544
* Description: "STRING_VALUE",
4645
* ContactFlowId: "STRING_VALUE", // required
4746
* FlowContentSha256: "STRING_VALUE",
47+
* ContactFlowVersion: Number("long"),
4848
* LastModifiedTime: new Date("TIMESTAMP"),
4949
* LastModifiedRegion: "STRING_VALUE",
5050
* };
Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
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 { DeleteContactFlowVersionRequest, DeleteContactFlowVersionResponse } from "../models/models_0";
10+
import { de_DeleteContactFlowVersionCommand, se_DeleteContactFlowVersionCommand } from "../protocols/Aws_restJson1";
11+
12+
/**
13+
* @public
14+
*/
15+
export type { __MetadataBearer };
16+
export { $Command };
17+
/**
18+
* @public
19+
*
20+
* The input for {@link DeleteContactFlowVersionCommand}.
21+
*/
22+
export interface DeleteContactFlowVersionCommandInput extends DeleteContactFlowVersionRequest {}
23+
/**
24+
* @public
25+
*
26+
* The output of {@link DeleteContactFlowVersionCommand}.
27+
*/
28+
export interface DeleteContactFlowVersionCommandOutput extends DeleteContactFlowVersionResponse, __MetadataBearer {}
29+
30+
/**
31+
* <p>Deletes the particular version specified in flow version identifier.</p>
32+
* @example
33+
* Use a bare-bones client and the command you need to make an API call.
34+
* ```javascript
35+
* import { ConnectClient, DeleteContactFlowVersionCommand } from "@aws-sdk/client-connect"; // ES Modules import
36+
* // const { ConnectClient, DeleteContactFlowVersionCommand } = require("@aws-sdk/client-connect"); // CommonJS import
37+
* const client = new ConnectClient(config);
38+
* const input = { // DeleteContactFlowVersionRequest
39+
* InstanceId: "STRING_VALUE", // required
40+
* ContactFlowId: "STRING_VALUE", // required
41+
* ContactFlowVersion: Number("long"), // required
42+
* };
43+
* const command = new DeleteContactFlowVersionCommand(input);
44+
* const response = await client.send(command);
45+
* // {};
46+
*
47+
* ```
48+
*
49+
* @param DeleteContactFlowVersionCommandInput - {@link DeleteContactFlowVersionCommandInput}
50+
* @returns {@link DeleteContactFlowVersionCommandOutput}
51+
* @see {@link DeleteContactFlowVersionCommandInput} for command's `input` shape.
52+
* @see {@link DeleteContactFlowVersionCommandOutput} for command's `response` shape.
53+
* @see {@link ConnectClientResolvedConfig | config} for ConnectClient's `config` shape.
54+
*
55+
* @throws {@link AccessDeniedException} (client fault)
56+
* <p>You do not have sufficient permissions to perform this action.</p>
57+
*
58+
* @throws {@link InternalServiceException} (server fault)
59+
* <p>Request processing failed because of an error or failure with the service.</p>
60+
*
61+
* @throws {@link InvalidParameterException} (client fault)
62+
* <p>One or more of the specified parameters are not valid.</p>
63+
*
64+
* @throws {@link InvalidRequestException} (client fault)
65+
* <p>The request is not valid.</p>
66+
*
67+
* @throws {@link ResourceNotFoundException} (client fault)
68+
* <p>The specified resource was not found.</p>
69+
*
70+
* @throws {@link ThrottlingException} (client fault)
71+
* <p>The throttling limit has been exceeded.</p>
72+
*
73+
* @throws {@link ConnectServiceException}
74+
* <p>Base exception class for all service exceptions from Connect service.</p>
75+
*
76+
* @public
77+
*/
78+
export class DeleteContactFlowVersionCommand extends $Command
79+
.classBuilder<
80+
DeleteContactFlowVersionCommandInput,
81+
DeleteContactFlowVersionCommandOutput,
82+
ConnectClientResolvedConfig,
83+
ServiceInputTypes,
84+
ServiceOutputTypes
85+
>()
86+
.ep(commonParams)
87+
.m(function (this: any, Command: any, cs: any, config: ConnectClientResolvedConfig, o: any) {
88+
return [
89+
getSerdePlugin(config, this.serialize, this.deserialize),
90+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
91+
];
92+
})
93+
.s("AmazonConnectService", "DeleteContactFlowVersion", {})
94+
.n("ConnectClient", "DeleteContactFlowVersionCommand")
95+
.f(void 0, void 0)
96+
.ser(se_DeleteContactFlowVersionCommand)
97+
.de(de_DeleteContactFlowVersionCommand)
98+
.build() {
99+
/** @internal type navigation helper, not in runtime. */
100+
protected declare static __types: {
101+
api: {
102+
input: DeleteContactFlowVersionRequest;
103+
output: {};
104+
};
105+
sdk: {
106+
input: DeleteContactFlowVersionCommandInput;
107+
output: DeleteContactFlowVersionCommandOutput;
108+
};
109+
};
110+
}

clients/client-connect/src/commands/DeleteQueueCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export interface DeleteQueueCommandInput extends DeleteQueueRequest {}
2828
export interface DeleteQueueCommandOutput extends __MetadataBearer {}
2929

3030
/**
31-
* <p>Deletes a queue. It isn't possible to delete a queue by using the Amazon Connect admin website.</p>
31+
* <p>Deletes a queue.</p>
3232
* @example
3333
* Use a bare-bones client and the command you need to make an API call.
3434
* ```javascript

clients/client-connect/src/commands/DeleteRuleCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
66

77
import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
88
import { commonParams } from "../endpoint/EndpointParameters";
9-
import { DeleteRuleRequest } from "../models/models_0";
9+
import { DeleteRuleRequest } from "../models/models_1";
1010
import { de_DeleteRuleCommand, se_DeleteRuleCommand } from "../protocols/Aws_restJson1";
1111

1212
/**

clients/client-connect/src/commands/DeleteSecurityProfileCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
66

77
import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
88
import { commonParams } from "../endpoint/EndpointParameters";
9-
import { DeleteSecurityProfileRequest } from "../models/models_0";
9+
import { DeleteSecurityProfileRequest } from "../models/models_1";
1010
import { de_DeleteSecurityProfileCommand, se_DeleteSecurityProfileCommand } from "../protocols/Aws_restJson1";
1111

1212
/**

clients/client-connect/src/commands/DescribeContactFlowCommand.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ export interface DescribeContactFlowCommandOutput extends DescribeContactFlowRes
3535
* of a Flow. For example, <code>arn:aws:.../contact-flow/\{id\}:$SAVED</code>. After a flow is
3636
* published, <code>$SAVED</code> needs to be supplied to view saved content that has not been
3737
* published.</p>
38+
* <p>Use <code>arn:aws:.../contact-flow/\{id\}:\{version\}</code> to retrieve the content of a
39+
* specific flow version.</p>
3840
* <p>In the response, <b>Status</b> indicates the flow status as either
3941
* <code>SAVED</code> or <code>PUBLISHED</code>. The <code>PUBLISHED</code> status will initiate
4042
* validation on the content. <code>SAVED</code> does not initiate validation of the content.
@@ -57,7 +59,7 @@ export interface DescribeContactFlowCommandOutput extends DescribeContactFlowRes
5759
* // Arn: "STRING_VALUE",
5860
* // Id: "STRING_VALUE",
5961
* // Name: "STRING_VALUE",
60-
* // Type: "CONTACT_FLOW" || "CUSTOMER_QUEUE" || "CUSTOMER_HOLD" || "CUSTOMER_WHISPER" || "AGENT_HOLD" || "AGENT_WHISPER" || "OUTBOUND_WHISPER" || "AGENT_TRANSFER" || "QUEUE_TRANSFER",
62+
* // Type: "CONTACT_FLOW" || "CUSTOMER_QUEUE" || "CUSTOMER_HOLD" || "CUSTOMER_WHISPER" || "AGENT_HOLD" || "AGENT_WHISPER" || "OUTBOUND_WHISPER" || "AGENT_TRANSFER" || "QUEUE_TRANSFER" || "CAMPAIGN",
6163
* // State: "ACTIVE" || "ARCHIVED",
6264
* // Status: "PUBLISHED" || "SAVED",
6365
* // Description: "STRING_VALUE",

clients/client-connect/src/commands/ListContactFlowsCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export interface ListContactFlowsCommandOutput extends ListContactFlowsResponse,
4242
* const input = { // ListContactFlowsRequest
4343
* InstanceId: "STRING_VALUE", // required
4444
* ContactFlowTypes: [ // ContactFlowTypes
45-
* "CONTACT_FLOW" || "CUSTOMER_QUEUE" || "CUSTOMER_HOLD" || "CUSTOMER_WHISPER" || "AGENT_HOLD" || "AGENT_WHISPER" || "OUTBOUND_WHISPER" || "AGENT_TRANSFER" || "QUEUE_TRANSFER",
45+
* "CONTACT_FLOW" || "CUSTOMER_QUEUE" || "CUSTOMER_HOLD" || "CUSTOMER_WHISPER" || "AGENT_HOLD" || "AGENT_WHISPER" || "OUTBOUND_WHISPER" || "AGENT_TRANSFER" || "QUEUE_TRANSFER" || "CAMPAIGN",
4646
* ],
4747
* NextToken: "STRING_VALUE",
4848
* MaxResults: Number("int"),
@@ -55,7 +55,7 @@ export interface ListContactFlowsCommandOutput extends ListContactFlowsResponse,
5555
* // Id: "STRING_VALUE",
5656
* // Arn: "STRING_VALUE",
5757
* // Name: "STRING_VALUE",
58-
* // ContactFlowType: "CONTACT_FLOW" || "CUSTOMER_QUEUE" || "CUSTOMER_HOLD" || "CUSTOMER_WHISPER" || "AGENT_HOLD" || "AGENT_WHISPER" || "OUTBOUND_WHISPER" || "AGENT_TRANSFER" || "QUEUE_TRANSFER",
58+
* // ContactFlowType: "CONTACT_FLOW" || "CUSTOMER_QUEUE" || "CUSTOMER_HOLD" || "CUSTOMER_WHISPER" || "AGENT_HOLD" || "AGENT_WHISPER" || "OUTBOUND_WHISPER" || "AGENT_TRANSFER" || "QUEUE_TRANSFER" || "CAMPAIGN",
5959
* // ContactFlowState: "ACTIVE" || "ARCHIVED",
6060
* // ContactFlowStatus: "PUBLISHED" || "SAVED",
6161
* // },

clients/client-connect/src/commands/ListQuickConnectsCommand.ts

Lines changed: 2 additions & 1 deletion
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 { ListQuickConnectsRequest, ListQuickConnectsResponse } from "../models/models_1";
9+
import { ListQuickConnectsRequest } from "../models/models_1";
10+
import { ListQuickConnectsResponse } from "../models/models_2";
1011
import { de_ListQuickConnectsCommand, se_ListQuickConnectsCommand } from "../protocols/Aws_restJson1";
1112

1213
/**

clients/client-connect/src/commands/SearchContactFlowsCommand.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export interface SearchContactFlowsCommandOutput extends SearchContactFlowsRespo
7373
* Value: "STRING_VALUE",
7474
* ComparisonType: "STARTS_WITH" || "CONTAINS" || "EXACT",
7575
* },
76-
* TypeCondition: "CONTACT_FLOW" || "CUSTOMER_QUEUE" || "CUSTOMER_HOLD" || "CUSTOMER_WHISPER" || "AGENT_HOLD" || "AGENT_WHISPER" || "OUTBOUND_WHISPER" || "AGENT_TRANSFER" || "QUEUE_TRANSFER",
76+
* TypeCondition: "CONTACT_FLOW" || "CUSTOMER_QUEUE" || "CUSTOMER_HOLD" || "CUSTOMER_WHISPER" || "AGENT_HOLD" || "AGENT_WHISPER" || "OUTBOUND_WHISPER" || "AGENT_TRANSFER" || "QUEUE_TRANSFER" || "CAMPAIGN",
7777
* StateCondition: "ACTIVE" || "ARCHIVED",
7878
* StatusCondition: "PUBLISHED" || "SAVED",
7979
* },
@@ -86,7 +86,7 @@ export interface SearchContactFlowsCommandOutput extends SearchContactFlowsRespo
8686
* Value: "STRING_VALUE",
8787
* ComparisonType: "STARTS_WITH" || "CONTAINS" || "EXACT",
8888
* },
89-
* TypeCondition: "CONTACT_FLOW" || "CUSTOMER_QUEUE" || "CUSTOMER_HOLD" || "CUSTOMER_WHISPER" || "AGENT_HOLD" || "AGENT_WHISPER" || "OUTBOUND_WHISPER" || "AGENT_TRANSFER" || "QUEUE_TRANSFER",
89+
* TypeCondition: "CONTACT_FLOW" || "CUSTOMER_QUEUE" || "CUSTOMER_HOLD" || "CUSTOMER_WHISPER" || "AGENT_HOLD" || "AGENT_WHISPER" || "OUTBOUND_WHISPER" || "AGENT_TRANSFER" || "QUEUE_TRANSFER" || "CAMPAIGN",
9090
* StateCondition: "ACTIVE" || "ARCHIVED",
9191
* StatusCondition: "PUBLISHED" || "SAVED",
9292
* },
@@ -99,7 +99,7 @@ export interface SearchContactFlowsCommandOutput extends SearchContactFlowsRespo
9999
* // Arn: "STRING_VALUE",
100100
* // Id: "STRING_VALUE",
101101
* // Name: "STRING_VALUE",
102-
* // Type: "CONTACT_FLOW" || "CUSTOMER_QUEUE" || "CUSTOMER_HOLD" || "CUSTOMER_WHISPER" || "AGENT_HOLD" || "AGENT_WHISPER" || "OUTBOUND_WHISPER" || "AGENT_TRANSFER" || "QUEUE_TRANSFER",
102+
* // Type: "CONTACT_FLOW" || "CUSTOMER_QUEUE" || "CUSTOMER_HOLD" || "CUSTOMER_WHISPER" || "AGENT_HOLD" || "AGENT_WHISPER" || "OUTBOUND_WHISPER" || "AGENT_TRANSFER" || "QUEUE_TRANSFER" || "CAMPAIGN",
103103
* // State: "ACTIVE" || "ARCHIVED",
104104
* // Status: "PUBLISHED" || "SAVED",
105105
* // Description: "STRING_VALUE",

clients/client-connect/src/commands/UpdateRoutingProfileNameCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
66

77
import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
88
import { commonParams } from "../endpoint/EndpointParameters";
9-
import { UpdateRoutingProfileNameRequest } from "../models/models_2";
9+
import { UpdateRoutingProfileNameRequest } from "../models/models_3";
1010
import { de_UpdateRoutingProfileNameCommand, se_UpdateRoutingProfileNameCommand } from "../protocols/Aws_restJson1";
1111

1212
/**

clients/client-connect/src/commands/UpdateRoutingProfileQueuesCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
66

77
import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
88
import { commonParams } from "../endpoint/EndpointParameters";
9-
import { UpdateRoutingProfileQueuesRequest } from "../models/models_2";
9+
import { UpdateRoutingProfileQueuesRequest } from "../models/models_3";
1010
import { de_UpdateRoutingProfileQueuesCommand, se_UpdateRoutingProfileQueuesCommand } from "../protocols/Aws_restJson1";
1111

1212
/**

clients/client-connect/src/commands/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ export * from "./DeleteAttachedFileCommand";
5555
export * from "./DeleteContactEvaluationCommand";
5656
export * from "./DeleteContactFlowCommand";
5757
export * from "./DeleteContactFlowModuleCommand";
58+
export * from "./DeleteContactFlowVersionCommand";
5859
export * from "./DeleteEmailAddressCommand";
5960
export * from "./DeleteEvaluationFormCommand";
6061
export * from "./DeleteHoursOfOperationCommand";

0 commit comments

Comments
 (0)