@aws-sdk/client-connect 3.731.1 → 3.734.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/dist-cjs/index.js +46 -5
- package/dist-es/Connect.js +2 -0
- package/dist-es/commands/DeleteContactFlowVersionCommand.js +22 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/models/models_1.js +0 -4
- package/dist-es/models/models_2.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +22 -0
- package/dist-types/Connect.d.ts +7 -0
- package/dist-types/ConnectClient.d.ts +3 -2
- package/dist-types/commands/AssociateUserProficienciesCommand.d.ts +1 -1
- package/dist-types/commands/CreateContactFlowCommand.d.ts +1 -1
- package/dist-types/commands/CreateContactFlowVersionCommand.d.ts +5 -5
- package/dist-types/commands/DeleteContactFlowVersionCommand.d.ts +89 -0
- package/dist-types/commands/DeleteQueueCommand.d.ts +1 -1
- package/dist-types/commands/DeleteRuleCommand.d.ts +1 -1
- package/dist-types/commands/DeleteSecurityProfileCommand.d.ts +1 -1
- package/dist-types/commands/DescribeContactFlowCommand.d.ts +3 -1
- package/dist-types/commands/ListContactFlowsCommand.d.ts +2 -2
- package/dist-types/commands/ListQuickConnectsCommand.d.ts +2 -1
- package/dist-types/commands/SearchContactFlowsCommand.d.ts +3 -3
- package/dist-types/commands/UpdateRoutingProfileNameCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRoutingProfileQueuesCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +32 -31
- package/dist-types/models/models_1.d.ts +30 -27
- package/dist-types/models/models_2.d.ts +29 -49
- package/dist-types/models/models_3.d.ts +48 -1
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/Connect.d.ts +17 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/DeleteContactFlowVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteRuleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteSecurityProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListQuickConnectsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/UpdateRoutingProfileNameCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateRoutingProfileQueuesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +8 -8
- package/dist-types/ts3.4/models/models_1.d.ts +8 -10
- package/dist-types/ts3.4/models/models_2.d.ts +11 -13
- package/dist-types/ts3.4/models/models_3.d.ts +12 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +33 -33
package/README.md
CHANGED
|
@@ -673,6 +673,14 @@ DeleteContactFlowModule
|
|
|
673
673
|
|
|
674
674
|
[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/)
|
|
675
675
|
|
|
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
|
+
|
|
676
684
|
</details>
|
|
677
685
|
<details>
|
|
678
686
|
<summary>
|
package/dist-cjs/index.js
CHANGED
|
@@ -120,6 +120,7 @@ __export(src_exports, {
|
|
|
120
120
|
DeleteContactEvaluationCommand: () => DeleteContactEvaluationCommand,
|
|
121
121
|
DeleteContactFlowCommand: () => DeleteContactFlowCommand,
|
|
122
122
|
DeleteContactFlowModuleCommand: () => DeleteContactFlowModuleCommand,
|
|
123
|
+
DeleteContactFlowVersionCommand: () => DeleteContactFlowVersionCommand,
|
|
123
124
|
DeleteEmailAddressCommand: () => DeleteEmailAddressCommand,
|
|
124
125
|
DeleteEvaluationFormCommand: () => DeleteEvaluationFormCommand,
|
|
125
126
|
DeleteHoursOfOperationCommand: () => DeleteHoursOfOperationCommand,
|
|
@@ -1272,6 +1273,7 @@ var ContactFlowType = {
|
|
|
1272
1273
|
AGENT_HOLD: "AGENT_HOLD",
|
|
1273
1274
|
AGENT_TRANSFER: "AGENT_TRANSFER",
|
|
1274
1275
|
AGENT_WHISPER: "AGENT_WHISPER",
|
|
1276
|
+
CAMPAIGN: "CAMPAIGN",
|
|
1275
1277
|
CONTACT_FLOW: "CONTACT_FLOW",
|
|
1276
1278
|
CUSTOMER_HOLD: "CUSTOMER_HOLD",
|
|
1277
1279
|
CUSTOMER_QUEUE: "CUSTOMER_QUEUE",
|
|
@@ -2173,10 +2175,6 @@ var QueueType = {
|
|
|
2173
2175
|
AGENT: "AGENT",
|
|
2174
2176
|
STANDARD: "STANDARD"
|
|
2175
2177
|
};
|
|
2176
|
-
var RealTimeContactAnalysisOutputType = {
|
|
2177
|
-
Raw: "Raw",
|
|
2178
|
-
Redacted: "Redacted"
|
|
2179
|
-
};
|
|
2180
2178
|
var DescribeEmailAddressResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2181
2179
|
...obj,
|
|
2182
2180
|
...obj.EmailAddress && { EmailAddress: import_smithy_client.SENSITIVE_STRING },
|
|
@@ -2225,6 +2223,10 @@ var ListInstancesResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
|
2225
2223
|
|
|
2226
2224
|
// src/models/models_2.ts
|
|
2227
2225
|
|
|
2226
|
+
var RealTimeContactAnalysisOutputType = {
|
|
2227
|
+
Raw: "Raw",
|
|
2228
|
+
Redacted: "Redacted"
|
|
2229
|
+
};
|
|
2228
2230
|
var RealTimeContactAnalysisSegmentType = {
|
|
2229
2231
|
Attachments: "Attachments",
|
|
2230
2232
|
Categories: "Categories",
|
|
@@ -3261,6 +3263,7 @@ var se_CreateContactFlowVersionCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
3261
3263
|
let body;
|
|
3262
3264
|
body = JSON.stringify(
|
|
3263
3265
|
(0, import_smithy_client.take)(input, {
|
|
3266
|
+
ContactFlowVersion: [],
|
|
3264
3267
|
Description: [],
|
|
3265
3268
|
FlowContentSha256: [],
|
|
3266
3269
|
LastModifiedRegion: [],
|
|
@@ -3817,6 +3820,17 @@ var se_DeleteContactFlowModuleCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
3817
3820
|
b.m("DELETE").h(headers).b(body);
|
|
3818
3821
|
return b.build();
|
|
3819
3822
|
}, "se_DeleteContactFlowModuleCommand");
|
|
3823
|
+
var se_DeleteContactFlowVersionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3824
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3825
|
+
const headers = {};
|
|
3826
|
+
b.bp("/contact-flows/{InstanceId}/{ContactFlowId}/version/{ContactFlowVersion}");
|
|
3827
|
+
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
3828
|
+
b.p("ContactFlowId", () => input.ContactFlowId, "{ContactFlowId}", false);
|
|
3829
|
+
b.p("ContactFlowVersion", () => input.ContactFlowVersion.toString(), "{ContactFlowVersion}", false);
|
|
3830
|
+
let body;
|
|
3831
|
+
b.m("DELETE").h(headers).b(body);
|
|
3832
|
+
return b.build();
|
|
3833
|
+
}, "se_DeleteContactFlowVersionCommand");
|
|
3820
3834
|
var se_DeleteEmailAddressCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3821
3835
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
3822
3836
|
const headers = {};
|
|
@@ -8010,6 +8024,16 @@ var de_DeleteContactFlowModuleCommand = /* @__PURE__ */ __name(async (output, co
|
|
|
8010
8024
|
await (0, import_smithy_client.collectBody)(output.body, context);
|
|
8011
8025
|
return contents;
|
|
8012
8026
|
}, "de_DeleteContactFlowModuleCommand");
|
|
8027
|
+
var de_DeleteContactFlowVersionCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
8028
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
8029
|
+
return de_CommandError(output, context);
|
|
8030
|
+
}
|
|
8031
|
+
const contents = (0, import_smithy_client.map)({
|
|
8032
|
+
$metadata: deserializeMetadata(output)
|
|
8033
|
+
});
|
|
8034
|
+
await (0, import_smithy_client.collectBody)(output.body, context);
|
|
8035
|
+
return contents;
|
|
8036
|
+
}, "de_DeleteContactFlowVersionCommand");
|
|
8013
8037
|
var de_DeleteEmailAddressCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
8014
8038
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
8015
8039
|
return de_CommandError(output, context);
|
|
@@ -13990,6 +14014,21 @@ var DeleteContactFlowModuleCommand = class extends import_smithy_client.Command.
|
|
|
13990
14014
|
}
|
|
13991
14015
|
};
|
|
13992
14016
|
|
|
14017
|
+
// src/commands/DeleteContactFlowVersionCommand.ts
|
|
14018
|
+
|
|
14019
|
+
|
|
14020
|
+
|
|
14021
|
+
var DeleteContactFlowVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
14022
|
+
return [
|
|
14023
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
14024
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
14025
|
+
];
|
|
14026
|
+
}).s("AmazonConnectService", "DeleteContactFlowVersion", {}).n("ConnectClient", "DeleteContactFlowVersionCommand").f(void 0, void 0).ser(se_DeleteContactFlowVersionCommand).de(de_DeleteContactFlowVersionCommand).build() {
|
|
14027
|
+
static {
|
|
14028
|
+
__name(this, "DeleteContactFlowVersionCommand");
|
|
14029
|
+
}
|
|
14030
|
+
};
|
|
14031
|
+
|
|
13993
14032
|
// src/commands/DeleteEmailAddressCommand.ts
|
|
13994
14033
|
|
|
13995
14034
|
|
|
@@ -17408,6 +17447,7 @@ var commands = {
|
|
|
17408
17447
|
DeleteContactEvaluationCommand,
|
|
17409
17448
|
DeleteContactFlowCommand,
|
|
17410
17449
|
DeleteContactFlowModuleCommand,
|
|
17450
|
+
DeleteContactFlowVersionCommand,
|
|
17411
17451
|
DeleteEmailAddressCommand,
|
|
17412
17452
|
DeleteEvaluationFormCommand,
|
|
17413
17453
|
DeleteHoursOfOperationCommand,
|
|
@@ -17967,6 +18007,7 @@ var paginateSearchVocabularies = (0, import_core.createPaginator)(ConnectClient,
|
|
|
17967
18007
|
DeleteContactEvaluationCommand,
|
|
17968
18008
|
DeleteContactFlowCommand,
|
|
17969
18009
|
DeleteContactFlowModuleCommand,
|
|
18010
|
+
DeleteContactFlowVersionCommand,
|
|
17970
18011
|
DeleteEmailAddressCommand,
|
|
17971
18012
|
DeleteEvaluationFormCommand,
|
|
17972
18013
|
DeleteHoursOfOperationCommand,
|
|
@@ -18378,7 +18419,6 @@ var paginateSearchVocabularies = (0, import_core.createPaginator)(ConnectClient,
|
|
|
18378
18419
|
LexVersion,
|
|
18379
18420
|
ReferenceSummary,
|
|
18380
18421
|
QueueType,
|
|
18381
|
-
RealTimeContactAnalysisOutputType,
|
|
18382
18422
|
DescribeEmailAddressResponseFilterSensitiveLog,
|
|
18383
18423
|
InstanceFilterSensitiveLog,
|
|
18384
18424
|
DescribeInstanceResponseFilterSensitiveLog,
|
|
@@ -18389,6 +18429,7 @@ var paginateSearchVocabularies = (0, import_core.createPaginator)(ConnectClient,
|
|
|
18389
18429
|
GetFederationTokenResponseFilterSensitiveLog,
|
|
18390
18430
|
InstanceSummaryFilterSensitiveLog,
|
|
18391
18431
|
ListInstancesResponseFilterSensitiveLog,
|
|
18432
|
+
RealTimeContactAnalysisOutputType,
|
|
18392
18433
|
RealTimeContactAnalysisSegmentType,
|
|
18393
18434
|
RealTimeContactAnalysisSupportedChannel,
|
|
18394
18435
|
ArtifactStatus,
|
package/dist-es/Connect.js
CHANGED
|
@@ -55,6 +55,7 @@ import { DeleteAttachedFileCommand, } from "./commands/DeleteAttachedFileCommand
|
|
|
55
55
|
import { DeleteContactEvaluationCommand, } from "./commands/DeleteContactEvaluationCommand";
|
|
56
56
|
import { DeleteContactFlowCommand, } from "./commands/DeleteContactFlowCommand";
|
|
57
57
|
import { DeleteContactFlowModuleCommand, } from "./commands/DeleteContactFlowModuleCommand";
|
|
58
|
+
import { DeleteContactFlowVersionCommand, } from "./commands/DeleteContactFlowVersionCommand";
|
|
58
59
|
import { DeleteEmailAddressCommand, } from "./commands/DeleteEmailAddressCommand";
|
|
59
60
|
import { DeleteEvaluationFormCommand, } from "./commands/DeleteEvaluationFormCommand";
|
|
60
61
|
import { DeleteHoursOfOperationCommand, } from "./commands/DeleteHoursOfOperationCommand";
|
|
@@ -337,6 +338,7 @@ const commands = {
|
|
|
337
338
|
DeleteContactEvaluationCommand,
|
|
338
339
|
DeleteContactFlowCommand,
|
|
339
340
|
DeleteContactFlowModuleCommand,
|
|
341
|
+
DeleteContactFlowVersionCommand,
|
|
340
342
|
DeleteEmailAddressCommand,
|
|
341
343
|
DeleteEvaluationFormCommand,
|
|
342
344
|
DeleteHoursOfOperationCommand,
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_DeleteContactFlowVersionCommand, se_DeleteContactFlowVersionCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class DeleteContactFlowVersionCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("AmazonConnectService", "DeleteContactFlowVersion", {})
|
|
17
|
+
.n("ConnectClient", "DeleteContactFlowVersionCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_DeleteContactFlowVersionCommand)
|
|
20
|
+
.de(de_DeleteContactFlowVersionCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -54,6 +54,7 @@ export * from "./DeleteAttachedFileCommand";
|
|
|
54
54
|
export * from "./DeleteContactEvaluationCommand";
|
|
55
55
|
export * from "./DeleteContactFlowCommand";
|
|
56
56
|
export * from "./DeleteContactFlowModuleCommand";
|
|
57
|
+
export * from "./DeleteContactFlowVersionCommand";
|
|
57
58
|
export * from "./DeleteEmailAddressCommand";
|
|
58
59
|
export * from "./DeleteEvaluationFormCommand";
|
|
59
60
|
export * from "./DeleteHoursOfOperationCommand";
|
|
@@ -407,6 +407,7 @@ export const ContactFlowType = {
|
|
|
407
407
|
AGENT_HOLD: "AGENT_HOLD",
|
|
408
408
|
AGENT_TRANSFER: "AGENT_TRANSFER",
|
|
409
409
|
AGENT_WHISPER: "AGENT_WHISPER",
|
|
410
|
+
CAMPAIGN: "CAMPAIGN",
|
|
410
411
|
CONTACT_FLOW: "CONTACT_FLOW",
|
|
411
412
|
CUSTOMER_HOLD: "CUSTOMER_HOLD",
|
|
412
413
|
CUSTOMER_QUEUE: "CUSTOMER_QUEUE",
|
|
@@ -476,10 +476,6 @@ export const QueueType = {
|
|
|
476
476
|
AGENT: "AGENT",
|
|
477
477
|
STANDARD: "STANDARD",
|
|
478
478
|
};
|
|
479
|
-
export const RealTimeContactAnalysisOutputType = {
|
|
480
|
-
Raw: "Raw",
|
|
481
|
-
Redacted: "Redacted",
|
|
482
|
-
};
|
|
483
479
|
export const DescribeEmailAddressResponseFilterSensitiveLog = (obj) => ({
|
|
484
480
|
...obj,
|
|
485
481
|
...(obj.EmailAddress && { EmailAddress: SENSITIVE_STRING }),
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { ConnectServiceException as __BaseException } from "./ConnectServiceException";
|
|
3
|
+
export const RealTimeContactAnalysisOutputType = {
|
|
4
|
+
Raw: "Raw",
|
|
5
|
+
Redacted: "Redacted",
|
|
6
|
+
};
|
|
3
7
|
export const RealTimeContactAnalysisSegmentType = {
|
|
4
8
|
Attachments: "Attachments",
|
|
5
9
|
Categories: "Categories",
|
|
@@ -427,6 +427,7 @@ export const se_CreateContactFlowVersionCommand = async (input, context) => {
|
|
|
427
427
|
b.p("ContactFlowId", () => input.ContactFlowId, "{ContactFlowId}", false);
|
|
428
428
|
let body;
|
|
429
429
|
body = JSON.stringify(take(input, {
|
|
430
|
+
ContactFlowVersion: [],
|
|
430
431
|
Description: [],
|
|
431
432
|
FlowContentSha256: [],
|
|
432
433
|
LastModifiedRegion: [],
|
|
@@ -932,6 +933,17 @@ export const se_DeleteContactFlowModuleCommand = async (input, context) => {
|
|
|
932
933
|
b.m("DELETE").h(headers).b(body);
|
|
933
934
|
return b.build();
|
|
934
935
|
};
|
|
936
|
+
export const se_DeleteContactFlowVersionCommand = async (input, context) => {
|
|
937
|
+
const b = rb(input, context);
|
|
938
|
+
const headers = {};
|
|
939
|
+
b.bp("/contact-flows/{InstanceId}/{ContactFlowId}/version/{ContactFlowVersion}");
|
|
940
|
+
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
941
|
+
b.p("ContactFlowId", () => input.ContactFlowId, "{ContactFlowId}", false);
|
|
942
|
+
b.p("ContactFlowVersion", () => input.ContactFlowVersion.toString(), "{ContactFlowVersion}", false);
|
|
943
|
+
let body;
|
|
944
|
+
b.m("DELETE").h(headers).b(body);
|
|
945
|
+
return b.build();
|
|
946
|
+
};
|
|
935
947
|
export const se_DeleteEmailAddressCommand = async (input, context) => {
|
|
936
948
|
const b = rb(input, context);
|
|
937
949
|
const headers = {};
|
|
@@ -4903,6 +4915,16 @@ export const de_DeleteContactFlowModuleCommand = async (output, context) => {
|
|
|
4903
4915
|
await collectBody(output.body, context);
|
|
4904
4916
|
return contents;
|
|
4905
4917
|
};
|
|
4918
|
+
export const de_DeleteContactFlowVersionCommand = async (output, context) => {
|
|
4919
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
4920
|
+
return de_CommandError(output, context);
|
|
4921
|
+
}
|
|
4922
|
+
const contents = map({
|
|
4923
|
+
$metadata: deserializeMetadata(output),
|
|
4924
|
+
});
|
|
4925
|
+
await collectBody(output.body, context);
|
|
4926
|
+
return contents;
|
|
4927
|
+
};
|
|
4906
4928
|
export const de_DeleteEmailAddressCommand = async (output, context) => {
|
|
4907
4929
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
4908
4930
|
return de_CommandError(output, context);
|
package/dist-types/Connect.d.ts
CHANGED
|
@@ -55,6 +55,7 @@ import { DeleteAttachedFileCommandInput, DeleteAttachedFileCommandOutput } from
|
|
|
55
55
|
import { DeleteContactEvaluationCommandInput, DeleteContactEvaluationCommandOutput } from "./commands/DeleteContactEvaluationCommand";
|
|
56
56
|
import { DeleteContactFlowCommandInput, DeleteContactFlowCommandOutput } from "./commands/DeleteContactFlowCommand";
|
|
57
57
|
import { DeleteContactFlowModuleCommandInput, DeleteContactFlowModuleCommandOutput } from "./commands/DeleteContactFlowModuleCommand";
|
|
58
|
+
import { DeleteContactFlowVersionCommandInput, DeleteContactFlowVersionCommandOutput } from "./commands/DeleteContactFlowVersionCommand";
|
|
58
59
|
import { DeleteEmailAddressCommandInput, DeleteEmailAddressCommandOutput } from "./commands/DeleteEmailAddressCommand";
|
|
59
60
|
import { DeleteEvaluationFormCommandInput, DeleteEvaluationFormCommandOutput } from "./commands/DeleteEvaluationFormCommand";
|
|
60
61
|
import { DeleteHoursOfOperationCommandInput, DeleteHoursOfOperationCommandOutput } from "./commands/DeleteHoursOfOperationCommand";
|
|
@@ -617,6 +618,12 @@ export interface Connect {
|
|
|
617
618
|
deleteContactFlowModule(args: DeleteContactFlowModuleCommandInput, options?: __HttpHandlerOptions): Promise<DeleteContactFlowModuleCommandOutput>;
|
|
618
619
|
deleteContactFlowModule(args: DeleteContactFlowModuleCommandInput, cb: (err: any, data?: DeleteContactFlowModuleCommandOutput) => void): void;
|
|
619
620
|
deleteContactFlowModule(args: DeleteContactFlowModuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteContactFlowModuleCommandOutput) => void): void;
|
|
621
|
+
/**
|
|
622
|
+
* @see {@link DeleteContactFlowVersionCommand}
|
|
623
|
+
*/
|
|
624
|
+
deleteContactFlowVersion(args: DeleteContactFlowVersionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteContactFlowVersionCommandOutput>;
|
|
625
|
+
deleteContactFlowVersion(args: DeleteContactFlowVersionCommandInput, cb: (err: any, data?: DeleteContactFlowVersionCommandOutput) => void): void;
|
|
626
|
+
deleteContactFlowVersion(args: DeleteContactFlowVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteContactFlowVersionCommandOutput) => void): void;
|
|
620
627
|
/**
|
|
621
628
|
* @see {@link DeleteEmailAddressCommand}
|
|
622
629
|
*/
|
|
@@ -63,6 +63,7 @@ import { DeleteAttachedFileCommandInput, DeleteAttachedFileCommandOutput } from
|
|
|
63
63
|
import { DeleteContactEvaluationCommandInput, DeleteContactEvaluationCommandOutput } from "./commands/DeleteContactEvaluationCommand";
|
|
64
64
|
import { DeleteContactFlowCommandInput, DeleteContactFlowCommandOutput } from "./commands/DeleteContactFlowCommand";
|
|
65
65
|
import { DeleteContactFlowModuleCommandInput, DeleteContactFlowModuleCommandOutput } from "./commands/DeleteContactFlowModuleCommand";
|
|
66
|
+
import { DeleteContactFlowVersionCommandInput, DeleteContactFlowVersionCommandOutput } from "./commands/DeleteContactFlowVersionCommand";
|
|
66
67
|
import { DeleteEmailAddressCommandInput, DeleteEmailAddressCommandOutput } from "./commands/DeleteEmailAddressCommand";
|
|
67
68
|
import { DeleteEvaluationFormCommandInput, DeleteEvaluationFormCommandOutput } from "./commands/DeleteEvaluationFormCommand";
|
|
68
69
|
import { DeleteHoursOfOperationCommandInput, DeleteHoursOfOperationCommandOutput } from "./commands/DeleteHoursOfOperationCommand";
|
|
@@ -293,11 +294,11 @@ export { __Client };
|
|
|
293
294
|
/**
|
|
294
295
|
* @public
|
|
295
296
|
*/
|
|
296
|
-
export type ServiceInputTypes = ActivateEvaluationFormCommandInput | AssociateAnalyticsDataSetCommandInput | AssociateApprovedOriginCommandInput | AssociateBotCommandInput | AssociateDefaultVocabularyCommandInput | AssociateFlowCommandInput | AssociateInstanceStorageConfigCommandInput | AssociateLambdaFunctionCommandInput | AssociateLexBotCommandInput | AssociatePhoneNumberContactFlowCommandInput | AssociateQueueQuickConnectsCommandInput | AssociateRoutingProfileQueuesCommandInput | AssociateSecurityKeyCommandInput | AssociateTrafficDistributionGroupUserCommandInput | AssociateUserProficienciesCommandInput | BatchAssociateAnalyticsDataSetCommandInput | BatchDisassociateAnalyticsDataSetCommandInput | BatchGetAttachedFileMetadataCommandInput | BatchGetFlowAssociationCommandInput | BatchPutContactCommandInput | ClaimPhoneNumberCommandInput | CompleteAttachedFileUploadCommandInput | CreateAgentStatusCommandInput | CreateContactCommandInput | CreateContactFlowCommandInput | CreateContactFlowModuleCommandInput | CreateContactFlowVersionCommandInput | CreateEmailAddressCommandInput | CreateEvaluationFormCommandInput | CreateHoursOfOperationCommandInput | CreateHoursOfOperationOverrideCommandInput | CreateInstanceCommandInput | CreateIntegrationAssociationCommandInput | CreateParticipantCommandInput | CreatePersistentContactAssociationCommandInput | CreatePredefinedAttributeCommandInput | CreatePromptCommandInput | CreatePushNotificationRegistrationCommandInput | CreateQueueCommandInput | CreateQuickConnectCommandInput | CreateRoutingProfileCommandInput | CreateRuleCommandInput | CreateSecurityProfileCommandInput | CreateTaskTemplateCommandInput | CreateTrafficDistributionGroupCommandInput | CreateUseCaseCommandInput | CreateUserCommandInput | CreateUserHierarchyGroupCommandInput | CreateViewCommandInput | CreateViewVersionCommandInput | CreateVocabularyCommandInput | DeactivateEvaluationFormCommandInput | DeleteAttachedFileCommandInput | DeleteContactEvaluationCommandInput | DeleteContactFlowCommandInput | DeleteContactFlowModuleCommandInput | DeleteEmailAddressCommandInput | DeleteEvaluationFormCommandInput | DeleteHoursOfOperationCommandInput | DeleteHoursOfOperationOverrideCommandInput | DeleteInstanceCommandInput | DeleteIntegrationAssociationCommandInput | DeletePredefinedAttributeCommandInput | DeletePromptCommandInput | DeletePushNotificationRegistrationCommandInput | DeleteQueueCommandInput | DeleteQuickConnectCommandInput | DeleteRoutingProfileCommandInput | DeleteRuleCommandInput | DeleteSecurityProfileCommandInput | DeleteTaskTemplateCommandInput | DeleteTrafficDistributionGroupCommandInput | DeleteUseCaseCommandInput | DeleteUserCommandInput | DeleteUserHierarchyGroupCommandInput | DeleteViewCommandInput | DeleteViewVersionCommandInput | DeleteVocabularyCommandInput | DescribeAgentStatusCommandInput | DescribeAuthenticationProfileCommandInput | DescribeContactCommandInput | DescribeContactEvaluationCommandInput | DescribeContactFlowCommandInput | DescribeContactFlowModuleCommandInput | DescribeEmailAddressCommandInput | DescribeEvaluationFormCommandInput | DescribeHoursOfOperationCommandInput | DescribeHoursOfOperationOverrideCommandInput | DescribeInstanceAttributeCommandInput | DescribeInstanceCommandInput | DescribeInstanceStorageConfigCommandInput | DescribePhoneNumberCommandInput | DescribePredefinedAttributeCommandInput | DescribePromptCommandInput | DescribeQueueCommandInput | DescribeQuickConnectCommandInput | DescribeRoutingProfileCommandInput | DescribeRuleCommandInput | DescribeSecurityProfileCommandInput | DescribeTrafficDistributionGroupCommandInput | DescribeUserCommandInput | DescribeUserHierarchyGroupCommandInput | DescribeUserHierarchyStructureCommandInput | DescribeViewCommandInput | DescribeVocabularyCommandInput | DisassociateAnalyticsDataSetCommandInput | DisassociateApprovedOriginCommandInput | DisassociateBotCommandInput | DisassociateFlowCommandInput | DisassociateInstanceStorageConfigCommandInput | DisassociateLambdaFunctionCommandInput | DisassociateLexBotCommandInput | DisassociatePhoneNumberContactFlowCommandInput | DisassociateQueueQuickConnectsCommandInput | DisassociateRoutingProfileQueuesCommandInput | DisassociateSecurityKeyCommandInput | DisassociateTrafficDistributionGroupUserCommandInput | DisassociateUserProficienciesCommandInput | DismissUserContactCommandInput | GetAttachedFileCommandInput | GetContactAttributesCommandInput | GetCurrentMetricDataCommandInput | GetCurrentUserDataCommandInput | GetEffectiveHoursOfOperationsCommandInput | GetFederationTokenCommandInput | GetFlowAssociationCommandInput | GetMetricDataCommandInput | GetMetricDataV2CommandInput | GetPromptFileCommandInput | GetTaskTemplateCommandInput | GetTrafficDistributionCommandInput | ImportPhoneNumberCommandInput | ListAgentStatusesCommandInput | ListAnalyticsDataAssociationsCommandInput | ListApprovedOriginsCommandInput | ListAssociatedContactsCommandInput | ListAuthenticationProfilesCommandInput | ListBotsCommandInput | ListContactEvaluationsCommandInput | ListContactFlowModulesCommandInput | ListContactFlowVersionsCommandInput | ListContactFlowsCommandInput | ListContactReferencesCommandInput | ListDefaultVocabulariesCommandInput | ListEvaluationFormVersionsCommandInput | ListEvaluationFormsCommandInput | ListFlowAssociationsCommandInput | ListHoursOfOperationOverridesCommandInput | ListHoursOfOperationsCommandInput | ListInstanceAttributesCommandInput | ListInstanceStorageConfigsCommandInput | ListInstancesCommandInput | ListIntegrationAssociationsCommandInput | ListLambdaFunctionsCommandInput | ListLexBotsCommandInput | ListPhoneNumbersCommandInput | ListPhoneNumbersV2CommandInput | ListPredefinedAttributesCommandInput | ListPromptsCommandInput | ListQueueQuickConnectsCommandInput | ListQueuesCommandInput | ListQuickConnectsCommandInput | ListRealtimeContactAnalysisSegmentsV2CommandInput | ListRoutingProfileQueuesCommandInput | ListRoutingProfilesCommandInput | ListRulesCommandInput | ListSecurityKeysCommandInput | ListSecurityProfileApplicationsCommandInput | ListSecurityProfilePermissionsCommandInput | ListSecurityProfilesCommandInput | ListTagsForResourceCommandInput | ListTaskTemplatesCommandInput | ListTrafficDistributionGroupUsersCommandInput | ListTrafficDistributionGroupsCommandInput | ListUseCasesCommandInput | ListUserHierarchyGroupsCommandInput | ListUserProficienciesCommandInput | ListUsersCommandInput | ListViewVersionsCommandInput | ListViewsCommandInput | MonitorContactCommandInput | PauseContactCommandInput | PutUserStatusCommandInput | ReleasePhoneNumberCommandInput | ReplicateInstanceCommandInput | ResumeContactCommandInput | ResumeContactRecordingCommandInput | SearchAgentStatusesCommandInput | SearchAvailablePhoneNumbersCommandInput | SearchContactFlowModulesCommandInput | SearchContactFlowsCommandInput | SearchContactsCommandInput | SearchEmailAddressesCommandInput | SearchHoursOfOperationOverridesCommandInput | SearchHoursOfOperationsCommandInput | SearchPredefinedAttributesCommandInput | SearchPromptsCommandInput | SearchQueuesCommandInput | SearchQuickConnectsCommandInput | SearchResourceTagsCommandInput | SearchRoutingProfilesCommandInput | SearchSecurityProfilesCommandInput | SearchUserHierarchyGroupsCommandInput | SearchUsersCommandInput | SearchVocabulariesCommandInput | SendChatIntegrationEventCommandInput | SendOutboundEmailCommandInput | StartAttachedFileUploadCommandInput | StartChatContactCommandInput | StartContactEvaluationCommandInput | StartContactRecordingCommandInput | StartContactStreamingCommandInput | StartEmailContactCommandInput | StartOutboundChatContactCommandInput | StartOutboundEmailContactCommandInput | StartOutboundVoiceContactCommandInput | StartScreenSharingCommandInput | StartTaskContactCommandInput | StartWebRTCContactCommandInput | StopContactCommandInput | StopContactRecordingCommandInput | StopContactStreamingCommandInput | SubmitContactEvaluationCommandInput | SuspendContactRecordingCommandInput | TagContactCommandInput | TagResourceCommandInput | TransferContactCommandInput | UntagContactCommandInput | UntagResourceCommandInput | UpdateAgentStatusCommandInput | UpdateAuthenticationProfileCommandInput | UpdateContactAttributesCommandInput | UpdateContactCommandInput | UpdateContactEvaluationCommandInput | UpdateContactFlowContentCommandInput | UpdateContactFlowMetadataCommandInput | UpdateContactFlowModuleContentCommandInput | UpdateContactFlowModuleMetadataCommandInput | UpdateContactFlowNameCommandInput | UpdateContactRoutingDataCommandInput | UpdateContactScheduleCommandInput | UpdateEmailAddressMetadataCommandInput | UpdateEvaluationFormCommandInput | UpdateHoursOfOperationCommandInput | UpdateHoursOfOperationOverrideCommandInput | UpdateInstanceAttributeCommandInput | UpdateInstanceStorageConfigCommandInput | UpdateParticipantAuthenticationCommandInput | UpdateParticipantRoleConfigCommandInput | UpdatePhoneNumberCommandInput | UpdatePhoneNumberMetadataCommandInput | UpdatePredefinedAttributeCommandInput | UpdatePromptCommandInput | UpdateQueueHoursOfOperationCommandInput | UpdateQueueMaxContactsCommandInput | UpdateQueueNameCommandInput | UpdateQueueOutboundCallerConfigCommandInput | UpdateQueueOutboundEmailConfigCommandInput | UpdateQueueStatusCommandInput | UpdateQuickConnectConfigCommandInput | UpdateQuickConnectNameCommandInput | UpdateRoutingProfileAgentAvailabilityTimerCommandInput | UpdateRoutingProfileConcurrencyCommandInput | UpdateRoutingProfileDefaultOutboundQueueCommandInput | UpdateRoutingProfileNameCommandInput | UpdateRoutingProfileQueuesCommandInput | UpdateRuleCommandInput | UpdateSecurityProfileCommandInput | UpdateTaskTemplateCommandInput | UpdateTrafficDistributionCommandInput | UpdateUserHierarchyCommandInput | UpdateUserHierarchyGroupNameCommandInput | UpdateUserHierarchyStructureCommandInput | UpdateUserIdentityInfoCommandInput | UpdateUserPhoneConfigCommandInput | UpdateUserProficienciesCommandInput | UpdateUserRoutingProfileCommandInput | UpdateUserSecurityProfilesCommandInput | UpdateViewContentCommandInput | UpdateViewMetadataCommandInput;
|
|
297
|
+
export type ServiceInputTypes = ActivateEvaluationFormCommandInput | AssociateAnalyticsDataSetCommandInput | AssociateApprovedOriginCommandInput | AssociateBotCommandInput | AssociateDefaultVocabularyCommandInput | AssociateFlowCommandInput | AssociateInstanceStorageConfigCommandInput | AssociateLambdaFunctionCommandInput | AssociateLexBotCommandInput | AssociatePhoneNumberContactFlowCommandInput | AssociateQueueQuickConnectsCommandInput | AssociateRoutingProfileQueuesCommandInput | AssociateSecurityKeyCommandInput | AssociateTrafficDistributionGroupUserCommandInput | AssociateUserProficienciesCommandInput | BatchAssociateAnalyticsDataSetCommandInput | BatchDisassociateAnalyticsDataSetCommandInput | BatchGetAttachedFileMetadataCommandInput | BatchGetFlowAssociationCommandInput | BatchPutContactCommandInput | ClaimPhoneNumberCommandInput | CompleteAttachedFileUploadCommandInput | CreateAgentStatusCommandInput | CreateContactCommandInput | CreateContactFlowCommandInput | CreateContactFlowModuleCommandInput | CreateContactFlowVersionCommandInput | CreateEmailAddressCommandInput | CreateEvaluationFormCommandInput | CreateHoursOfOperationCommandInput | CreateHoursOfOperationOverrideCommandInput | CreateInstanceCommandInput | CreateIntegrationAssociationCommandInput | CreateParticipantCommandInput | CreatePersistentContactAssociationCommandInput | CreatePredefinedAttributeCommandInput | CreatePromptCommandInput | CreatePushNotificationRegistrationCommandInput | CreateQueueCommandInput | CreateQuickConnectCommandInput | CreateRoutingProfileCommandInput | CreateRuleCommandInput | CreateSecurityProfileCommandInput | CreateTaskTemplateCommandInput | CreateTrafficDistributionGroupCommandInput | CreateUseCaseCommandInput | CreateUserCommandInput | CreateUserHierarchyGroupCommandInput | CreateViewCommandInput | CreateViewVersionCommandInput | CreateVocabularyCommandInput | DeactivateEvaluationFormCommandInput | DeleteAttachedFileCommandInput | DeleteContactEvaluationCommandInput | DeleteContactFlowCommandInput | DeleteContactFlowModuleCommandInput | DeleteContactFlowVersionCommandInput | DeleteEmailAddressCommandInput | DeleteEvaluationFormCommandInput | DeleteHoursOfOperationCommandInput | DeleteHoursOfOperationOverrideCommandInput | DeleteInstanceCommandInput | DeleteIntegrationAssociationCommandInput | DeletePredefinedAttributeCommandInput | DeletePromptCommandInput | DeletePushNotificationRegistrationCommandInput | DeleteQueueCommandInput | DeleteQuickConnectCommandInput | DeleteRoutingProfileCommandInput | DeleteRuleCommandInput | DeleteSecurityProfileCommandInput | DeleteTaskTemplateCommandInput | DeleteTrafficDistributionGroupCommandInput | DeleteUseCaseCommandInput | DeleteUserCommandInput | DeleteUserHierarchyGroupCommandInput | DeleteViewCommandInput | DeleteViewVersionCommandInput | DeleteVocabularyCommandInput | DescribeAgentStatusCommandInput | DescribeAuthenticationProfileCommandInput | DescribeContactCommandInput | DescribeContactEvaluationCommandInput | DescribeContactFlowCommandInput | DescribeContactFlowModuleCommandInput | DescribeEmailAddressCommandInput | DescribeEvaluationFormCommandInput | DescribeHoursOfOperationCommandInput | DescribeHoursOfOperationOverrideCommandInput | DescribeInstanceAttributeCommandInput | DescribeInstanceCommandInput | DescribeInstanceStorageConfigCommandInput | DescribePhoneNumberCommandInput | DescribePredefinedAttributeCommandInput | DescribePromptCommandInput | DescribeQueueCommandInput | DescribeQuickConnectCommandInput | DescribeRoutingProfileCommandInput | DescribeRuleCommandInput | DescribeSecurityProfileCommandInput | DescribeTrafficDistributionGroupCommandInput | DescribeUserCommandInput | DescribeUserHierarchyGroupCommandInput | DescribeUserHierarchyStructureCommandInput | DescribeViewCommandInput | DescribeVocabularyCommandInput | DisassociateAnalyticsDataSetCommandInput | DisassociateApprovedOriginCommandInput | DisassociateBotCommandInput | DisassociateFlowCommandInput | DisassociateInstanceStorageConfigCommandInput | DisassociateLambdaFunctionCommandInput | DisassociateLexBotCommandInput | DisassociatePhoneNumberContactFlowCommandInput | DisassociateQueueQuickConnectsCommandInput | DisassociateRoutingProfileQueuesCommandInput | DisassociateSecurityKeyCommandInput | DisassociateTrafficDistributionGroupUserCommandInput | DisassociateUserProficienciesCommandInput | DismissUserContactCommandInput | GetAttachedFileCommandInput | GetContactAttributesCommandInput | GetCurrentMetricDataCommandInput | GetCurrentUserDataCommandInput | GetEffectiveHoursOfOperationsCommandInput | GetFederationTokenCommandInput | GetFlowAssociationCommandInput | GetMetricDataCommandInput | GetMetricDataV2CommandInput | GetPromptFileCommandInput | GetTaskTemplateCommandInput | GetTrafficDistributionCommandInput | ImportPhoneNumberCommandInput | ListAgentStatusesCommandInput | ListAnalyticsDataAssociationsCommandInput | ListApprovedOriginsCommandInput | ListAssociatedContactsCommandInput | ListAuthenticationProfilesCommandInput | ListBotsCommandInput | ListContactEvaluationsCommandInput | ListContactFlowModulesCommandInput | ListContactFlowVersionsCommandInput | ListContactFlowsCommandInput | ListContactReferencesCommandInput | ListDefaultVocabulariesCommandInput | ListEvaluationFormVersionsCommandInput | ListEvaluationFormsCommandInput | ListFlowAssociationsCommandInput | ListHoursOfOperationOverridesCommandInput | ListHoursOfOperationsCommandInput | ListInstanceAttributesCommandInput | ListInstanceStorageConfigsCommandInput | ListInstancesCommandInput | ListIntegrationAssociationsCommandInput | ListLambdaFunctionsCommandInput | ListLexBotsCommandInput | ListPhoneNumbersCommandInput | ListPhoneNumbersV2CommandInput | ListPredefinedAttributesCommandInput | ListPromptsCommandInput | ListQueueQuickConnectsCommandInput | ListQueuesCommandInput | ListQuickConnectsCommandInput | ListRealtimeContactAnalysisSegmentsV2CommandInput | ListRoutingProfileQueuesCommandInput | ListRoutingProfilesCommandInput | ListRulesCommandInput | ListSecurityKeysCommandInput | ListSecurityProfileApplicationsCommandInput | ListSecurityProfilePermissionsCommandInput | ListSecurityProfilesCommandInput | ListTagsForResourceCommandInput | ListTaskTemplatesCommandInput | ListTrafficDistributionGroupUsersCommandInput | ListTrafficDistributionGroupsCommandInput | ListUseCasesCommandInput | ListUserHierarchyGroupsCommandInput | ListUserProficienciesCommandInput | ListUsersCommandInput | ListViewVersionsCommandInput | ListViewsCommandInput | MonitorContactCommandInput | PauseContactCommandInput | PutUserStatusCommandInput | ReleasePhoneNumberCommandInput | ReplicateInstanceCommandInput | ResumeContactCommandInput | ResumeContactRecordingCommandInput | SearchAgentStatusesCommandInput | SearchAvailablePhoneNumbersCommandInput | SearchContactFlowModulesCommandInput | SearchContactFlowsCommandInput | SearchContactsCommandInput | SearchEmailAddressesCommandInput | SearchHoursOfOperationOverridesCommandInput | SearchHoursOfOperationsCommandInput | SearchPredefinedAttributesCommandInput | SearchPromptsCommandInput | SearchQueuesCommandInput | SearchQuickConnectsCommandInput | SearchResourceTagsCommandInput | SearchRoutingProfilesCommandInput | SearchSecurityProfilesCommandInput | SearchUserHierarchyGroupsCommandInput | SearchUsersCommandInput | SearchVocabulariesCommandInput | SendChatIntegrationEventCommandInput | SendOutboundEmailCommandInput | StartAttachedFileUploadCommandInput | StartChatContactCommandInput | StartContactEvaluationCommandInput | StartContactRecordingCommandInput | StartContactStreamingCommandInput | StartEmailContactCommandInput | StartOutboundChatContactCommandInput | StartOutboundEmailContactCommandInput | StartOutboundVoiceContactCommandInput | StartScreenSharingCommandInput | StartTaskContactCommandInput | StartWebRTCContactCommandInput | StopContactCommandInput | StopContactRecordingCommandInput | StopContactStreamingCommandInput | SubmitContactEvaluationCommandInput | SuspendContactRecordingCommandInput | TagContactCommandInput | TagResourceCommandInput | TransferContactCommandInput | UntagContactCommandInput | UntagResourceCommandInput | UpdateAgentStatusCommandInput | UpdateAuthenticationProfileCommandInput | UpdateContactAttributesCommandInput | UpdateContactCommandInput | UpdateContactEvaluationCommandInput | UpdateContactFlowContentCommandInput | UpdateContactFlowMetadataCommandInput | UpdateContactFlowModuleContentCommandInput | UpdateContactFlowModuleMetadataCommandInput | UpdateContactFlowNameCommandInput | UpdateContactRoutingDataCommandInput | UpdateContactScheduleCommandInput | UpdateEmailAddressMetadataCommandInput | UpdateEvaluationFormCommandInput | UpdateHoursOfOperationCommandInput | UpdateHoursOfOperationOverrideCommandInput | UpdateInstanceAttributeCommandInput | UpdateInstanceStorageConfigCommandInput | UpdateParticipantAuthenticationCommandInput | UpdateParticipantRoleConfigCommandInput | UpdatePhoneNumberCommandInput | UpdatePhoneNumberMetadataCommandInput | UpdatePredefinedAttributeCommandInput | UpdatePromptCommandInput | UpdateQueueHoursOfOperationCommandInput | UpdateQueueMaxContactsCommandInput | UpdateQueueNameCommandInput | UpdateQueueOutboundCallerConfigCommandInput | UpdateQueueOutboundEmailConfigCommandInput | UpdateQueueStatusCommandInput | UpdateQuickConnectConfigCommandInput | UpdateQuickConnectNameCommandInput | UpdateRoutingProfileAgentAvailabilityTimerCommandInput | UpdateRoutingProfileConcurrencyCommandInput | UpdateRoutingProfileDefaultOutboundQueueCommandInput | UpdateRoutingProfileNameCommandInput | UpdateRoutingProfileQueuesCommandInput | UpdateRuleCommandInput | UpdateSecurityProfileCommandInput | UpdateTaskTemplateCommandInput | UpdateTrafficDistributionCommandInput | UpdateUserHierarchyCommandInput | UpdateUserHierarchyGroupNameCommandInput | UpdateUserHierarchyStructureCommandInput | UpdateUserIdentityInfoCommandInput | UpdateUserPhoneConfigCommandInput | UpdateUserProficienciesCommandInput | UpdateUserRoutingProfileCommandInput | UpdateUserSecurityProfilesCommandInput | UpdateViewContentCommandInput | UpdateViewMetadataCommandInput;
|
|
297
298
|
/**
|
|
298
299
|
* @public
|
|
299
300
|
*/
|
|
300
|
-
export type ServiceOutputTypes = ActivateEvaluationFormCommandOutput | AssociateAnalyticsDataSetCommandOutput | AssociateApprovedOriginCommandOutput | AssociateBotCommandOutput | AssociateDefaultVocabularyCommandOutput | AssociateFlowCommandOutput | AssociateInstanceStorageConfigCommandOutput | AssociateLambdaFunctionCommandOutput | AssociateLexBotCommandOutput | AssociatePhoneNumberContactFlowCommandOutput | AssociateQueueQuickConnectsCommandOutput | AssociateRoutingProfileQueuesCommandOutput | AssociateSecurityKeyCommandOutput | AssociateTrafficDistributionGroupUserCommandOutput | AssociateUserProficienciesCommandOutput | BatchAssociateAnalyticsDataSetCommandOutput | BatchDisassociateAnalyticsDataSetCommandOutput | BatchGetAttachedFileMetadataCommandOutput | BatchGetFlowAssociationCommandOutput | BatchPutContactCommandOutput | ClaimPhoneNumberCommandOutput | CompleteAttachedFileUploadCommandOutput | CreateAgentStatusCommandOutput | CreateContactCommandOutput | CreateContactFlowCommandOutput | CreateContactFlowModuleCommandOutput | CreateContactFlowVersionCommandOutput | CreateEmailAddressCommandOutput | CreateEvaluationFormCommandOutput | CreateHoursOfOperationCommandOutput | CreateHoursOfOperationOverrideCommandOutput | CreateInstanceCommandOutput | CreateIntegrationAssociationCommandOutput | CreateParticipantCommandOutput | CreatePersistentContactAssociationCommandOutput | CreatePredefinedAttributeCommandOutput | CreatePromptCommandOutput | CreatePushNotificationRegistrationCommandOutput | CreateQueueCommandOutput | CreateQuickConnectCommandOutput | CreateRoutingProfileCommandOutput | CreateRuleCommandOutput | CreateSecurityProfileCommandOutput | CreateTaskTemplateCommandOutput | CreateTrafficDistributionGroupCommandOutput | CreateUseCaseCommandOutput | CreateUserCommandOutput | CreateUserHierarchyGroupCommandOutput | CreateViewCommandOutput | CreateViewVersionCommandOutput | CreateVocabularyCommandOutput | DeactivateEvaluationFormCommandOutput | DeleteAttachedFileCommandOutput | DeleteContactEvaluationCommandOutput | DeleteContactFlowCommandOutput | DeleteContactFlowModuleCommandOutput | DeleteEmailAddressCommandOutput | DeleteEvaluationFormCommandOutput | DeleteHoursOfOperationCommandOutput | DeleteHoursOfOperationOverrideCommandOutput | DeleteInstanceCommandOutput | DeleteIntegrationAssociationCommandOutput | DeletePredefinedAttributeCommandOutput | DeletePromptCommandOutput | DeletePushNotificationRegistrationCommandOutput | DeleteQueueCommandOutput | DeleteQuickConnectCommandOutput | DeleteRoutingProfileCommandOutput | DeleteRuleCommandOutput | DeleteSecurityProfileCommandOutput | DeleteTaskTemplateCommandOutput | DeleteTrafficDistributionGroupCommandOutput | DeleteUseCaseCommandOutput | DeleteUserCommandOutput | DeleteUserHierarchyGroupCommandOutput | DeleteViewCommandOutput | DeleteViewVersionCommandOutput | DeleteVocabularyCommandOutput | DescribeAgentStatusCommandOutput | DescribeAuthenticationProfileCommandOutput | DescribeContactCommandOutput | DescribeContactEvaluationCommandOutput | DescribeContactFlowCommandOutput | DescribeContactFlowModuleCommandOutput | DescribeEmailAddressCommandOutput | DescribeEvaluationFormCommandOutput | DescribeHoursOfOperationCommandOutput | DescribeHoursOfOperationOverrideCommandOutput | DescribeInstanceAttributeCommandOutput | DescribeInstanceCommandOutput | DescribeInstanceStorageConfigCommandOutput | DescribePhoneNumberCommandOutput | DescribePredefinedAttributeCommandOutput | DescribePromptCommandOutput | DescribeQueueCommandOutput | DescribeQuickConnectCommandOutput | DescribeRoutingProfileCommandOutput | DescribeRuleCommandOutput | DescribeSecurityProfileCommandOutput | DescribeTrafficDistributionGroupCommandOutput | DescribeUserCommandOutput | DescribeUserHierarchyGroupCommandOutput | DescribeUserHierarchyStructureCommandOutput | DescribeViewCommandOutput | DescribeVocabularyCommandOutput | DisassociateAnalyticsDataSetCommandOutput | DisassociateApprovedOriginCommandOutput | DisassociateBotCommandOutput | DisassociateFlowCommandOutput | DisassociateInstanceStorageConfigCommandOutput | DisassociateLambdaFunctionCommandOutput | DisassociateLexBotCommandOutput | DisassociatePhoneNumberContactFlowCommandOutput | DisassociateQueueQuickConnectsCommandOutput | DisassociateRoutingProfileQueuesCommandOutput | DisassociateSecurityKeyCommandOutput | DisassociateTrafficDistributionGroupUserCommandOutput | DisassociateUserProficienciesCommandOutput | DismissUserContactCommandOutput | GetAttachedFileCommandOutput | GetContactAttributesCommandOutput | GetCurrentMetricDataCommandOutput | GetCurrentUserDataCommandOutput | GetEffectiveHoursOfOperationsCommandOutput | GetFederationTokenCommandOutput | GetFlowAssociationCommandOutput | GetMetricDataCommandOutput | GetMetricDataV2CommandOutput | GetPromptFileCommandOutput | GetTaskTemplateCommandOutput | GetTrafficDistributionCommandOutput | ImportPhoneNumberCommandOutput | ListAgentStatusesCommandOutput | ListAnalyticsDataAssociationsCommandOutput | ListApprovedOriginsCommandOutput | ListAssociatedContactsCommandOutput | ListAuthenticationProfilesCommandOutput | ListBotsCommandOutput | ListContactEvaluationsCommandOutput | ListContactFlowModulesCommandOutput | ListContactFlowVersionsCommandOutput | ListContactFlowsCommandOutput | ListContactReferencesCommandOutput | ListDefaultVocabulariesCommandOutput | ListEvaluationFormVersionsCommandOutput | ListEvaluationFormsCommandOutput | ListFlowAssociationsCommandOutput | ListHoursOfOperationOverridesCommandOutput | ListHoursOfOperationsCommandOutput | ListInstanceAttributesCommandOutput | ListInstanceStorageConfigsCommandOutput | ListInstancesCommandOutput | ListIntegrationAssociationsCommandOutput | ListLambdaFunctionsCommandOutput | ListLexBotsCommandOutput | ListPhoneNumbersCommandOutput | ListPhoneNumbersV2CommandOutput | ListPredefinedAttributesCommandOutput | ListPromptsCommandOutput | ListQueueQuickConnectsCommandOutput | ListQueuesCommandOutput | ListQuickConnectsCommandOutput | ListRealtimeContactAnalysisSegmentsV2CommandOutput | ListRoutingProfileQueuesCommandOutput | ListRoutingProfilesCommandOutput | ListRulesCommandOutput | ListSecurityKeysCommandOutput | ListSecurityProfileApplicationsCommandOutput | ListSecurityProfilePermissionsCommandOutput | ListSecurityProfilesCommandOutput | ListTagsForResourceCommandOutput | ListTaskTemplatesCommandOutput | ListTrafficDistributionGroupUsersCommandOutput | ListTrafficDistributionGroupsCommandOutput | ListUseCasesCommandOutput | ListUserHierarchyGroupsCommandOutput | ListUserProficienciesCommandOutput | ListUsersCommandOutput | ListViewVersionsCommandOutput | ListViewsCommandOutput | MonitorContactCommandOutput | PauseContactCommandOutput | PutUserStatusCommandOutput | ReleasePhoneNumberCommandOutput | ReplicateInstanceCommandOutput | ResumeContactCommandOutput | ResumeContactRecordingCommandOutput | SearchAgentStatusesCommandOutput | SearchAvailablePhoneNumbersCommandOutput | SearchContactFlowModulesCommandOutput | SearchContactFlowsCommandOutput | SearchContactsCommandOutput | SearchEmailAddressesCommandOutput | SearchHoursOfOperationOverridesCommandOutput | SearchHoursOfOperationsCommandOutput | SearchPredefinedAttributesCommandOutput | SearchPromptsCommandOutput | SearchQueuesCommandOutput | SearchQuickConnectsCommandOutput | SearchResourceTagsCommandOutput | SearchRoutingProfilesCommandOutput | SearchSecurityProfilesCommandOutput | SearchUserHierarchyGroupsCommandOutput | SearchUsersCommandOutput | SearchVocabulariesCommandOutput | SendChatIntegrationEventCommandOutput | SendOutboundEmailCommandOutput | StartAttachedFileUploadCommandOutput | StartChatContactCommandOutput | StartContactEvaluationCommandOutput | StartContactRecordingCommandOutput | StartContactStreamingCommandOutput | StartEmailContactCommandOutput | StartOutboundChatContactCommandOutput | StartOutboundEmailContactCommandOutput | StartOutboundVoiceContactCommandOutput | StartScreenSharingCommandOutput | StartTaskContactCommandOutput | StartWebRTCContactCommandOutput | StopContactCommandOutput | StopContactRecordingCommandOutput | StopContactStreamingCommandOutput | SubmitContactEvaluationCommandOutput | SuspendContactRecordingCommandOutput | TagContactCommandOutput | TagResourceCommandOutput | TransferContactCommandOutput | UntagContactCommandOutput | UntagResourceCommandOutput | UpdateAgentStatusCommandOutput | UpdateAuthenticationProfileCommandOutput | UpdateContactAttributesCommandOutput | UpdateContactCommandOutput | UpdateContactEvaluationCommandOutput | UpdateContactFlowContentCommandOutput | UpdateContactFlowMetadataCommandOutput | UpdateContactFlowModuleContentCommandOutput | UpdateContactFlowModuleMetadataCommandOutput | UpdateContactFlowNameCommandOutput | UpdateContactRoutingDataCommandOutput | UpdateContactScheduleCommandOutput | UpdateEmailAddressMetadataCommandOutput | UpdateEvaluationFormCommandOutput | UpdateHoursOfOperationCommandOutput | UpdateHoursOfOperationOverrideCommandOutput | UpdateInstanceAttributeCommandOutput | UpdateInstanceStorageConfigCommandOutput | UpdateParticipantAuthenticationCommandOutput | UpdateParticipantRoleConfigCommandOutput | UpdatePhoneNumberCommandOutput | UpdatePhoneNumberMetadataCommandOutput | UpdatePredefinedAttributeCommandOutput | UpdatePromptCommandOutput | UpdateQueueHoursOfOperationCommandOutput | UpdateQueueMaxContactsCommandOutput | UpdateQueueNameCommandOutput | UpdateQueueOutboundCallerConfigCommandOutput | UpdateQueueOutboundEmailConfigCommandOutput | UpdateQueueStatusCommandOutput | UpdateQuickConnectConfigCommandOutput | UpdateQuickConnectNameCommandOutput | UpdateRoutingProfileAgentAvailabilityTimerCommandOutput | UpdateRoutingProfileConcurrencyCommandOutput | UpdateRoutingProfileDefaultOutboundQueueCommandOutput | UpdateRoutingProfileNameCommandOutput | UpdateRoutingProfileQueuesCommandOutput | UpdateRuleCommandOutput | UpdateSecurityProfileCommandOutput | UpdateTaskTemplateCommandOutput | UpdateTrafficDistributionCommandOutput | UpdateUserHierarchyCommandOutput | UpdateUserHierarchyGroupNameCommandOutput | UpdateUserHierarchyStructureCommandOutput | UpdateUserIdentityInfoCommandOutput | UpdateUserPhoneConfigCommandOutput | UpdateUserProficienciesCommandOutput | UpdateUserRoutingProfileCommandOutput | UpdateUserSecurityProfilesCommandOutput | UpdateViewContentCommandOutput | UpdateViewMetadataCommandOutput;
|
|
301
|
+
export type ServiceOutputTypes = ActivateEvaluationFormCommandOutput | AssociateAnalyticsDataSetCommandOutput | AssociateApprovedOriginCommandOutput | AssociateBotCommandOutput | AssociateDefaultVocabularyCommandOutput | AssociateFlowCommandOutput | AssociateInstanceStorageConfigCommandOutput | AssociateLambdaFunctionCommandOutput | AssociateLexBotCommandOutput | AssociatePhoneNumberContactFlowCommandOutput | AssociateQueueQuickConnectsCommandOutput | AssociateRoutingProfileQueuesCommandOutput | AssociateSecurityKeyCommandOutput | AssociateTrafficDistributionGroupUserCommandOutput | AssociateUserProficienciesCommandOutput | BatchAssociateAnalyticsDataSetCommandOutput | BatchDisassociateAnalyticsDataSetCommandOutput | BatchGetAttachedFileMetadataCommandOutput | BatchGetFlowAssociationCommandOutput | BatchPutContactCommandOutput | ClaimPhoneNumberCommandOutput | CompleteAttachedFileUploadCommandOutput | CreateAgentStatusCommandOutput | CreateContactCommandOutput | CreateContactFlowCommandOutput | CreateContactFlowModuleCommandOutput | CreateContactFlowVersionCommandOutput | CreateEmailAddressCommandOutput | CreateEvaluationFormCommandOutput | CreateHoursOfOperationCommandOutput | CreateHoursOfOperationOverrideCommandOutput | CreateInstanceCommandOutput | CreateIntegrationAssociationCommandOutput | CreateParticipantCommandOutput | CreatePersistentContactAssociationCommandOutput | CreatePredefinedAttributeCommandOutput | CreatePromptCommandOutput | CreatePushNotificationRegistrationCommandOutput | CreateQueueCommandOutput | CreateQuickConnectCommandOutput | CreateRoutingProfileCommandOutput | CreateRuleCommandOutput | CreateSecurityProfileCommandOutput | CreateTaskTemplateCommandOutput | CreateTrafficDistributionGroupCommandOutput | CreateUseCaseCommandOutput | CreateUserCommandOutput | CreateUserHierarchyGroupCommandOutput | CreateViewCommandOutput | CreateViewVersionCommandOutput | CreateVocabularyCommandOutput | DeactivateEvaluationFormCommandOutput | DeleteAttachedFileCommandOutput | DeleteContactEvaluationCommandOutput | DeleteContactFlowCommandOutput | DeleteContactFlowModuleCommandOutput | DeleteContactFlowVersionCommandOutput | DeleteEmailAddressCommandOutput | DeleteEvaluationFormCommandOutput | DeleteHoursOfOperationCommandOutput | DeleteHoursOfOperationOverrideCommandOutput | DeleteInstanceCommandOutput | DeleteIntegrationAssociationCommandOutput | DeletePredefinedAttributeCommandOutput | DeletePromptCommandOutput | DeletePushNotificationRegistrationCommandOutput | DeleteQueueCommandOutput | DeleteQuickConnectCommandOutput | DeleteRoutingProfileCommandOutput | DeleteRuleCommandOutput | DeleteSecurityProfileCommandOutput | DeleteTaskTemplateCommandOutput | DeleteTrafficDistributionGroupCommandOutput | DeleteUseCaseCommandOutput | DeleteUserCommandOutput | DeleteUserHierarchyGroupCommandOutput | DeleteViewCommandOutput | DeleteViewVersionCommandOutput | DeleteVocabularyCommandOutput | DescribeAgentStatusCommandOutput | DescribeAuthenticationProfileCommandOutput | DescribeContactCommandOutput | DescribeContactEvaluationCommandOutput | DescribeContactFlowCommandOutput | DescribeContactFlowModuleCommandOutput | DescribeEmailAddressCommandOutput | DescribeEvaluationFormCommandOutput | DescribeHoursOfOperationCommandOutput | DescribeHoursOfOperationOverrideCommandOutput | DescribeInstanceAttributeCommandOutput | DescribeInstanceCommandOutput | DescribeInstanceStorageConfigCommandOutput | DescribePhoneNumberCommandOutput | DescribePredefinedAttributeCommandOutput | DescribePromptCommandOutput | DescribeQueueCommandOutput | DescribeQuickConnectCommandOutput | DescribeRoutingProfileCommandOutput | DescribeRuleCommandOutput | DescribeSecurityProfileCommandOutput | DescribeTrafficDistributionGroupCommandOutput | DescribeUserCommandOutput | DescribeUserHierarchyGroupCommandOutput | DescribeUserHierarchyStructureCommandOutput | DescribeViewCommandOutput | DescribeVocabularyCommandOutput | DisassociateAnalyticsDataSetCommandOutput | DisassociateApprovedOriginCommandOutput | DisassociateBotCommandOutput | DisassociateFlowCommandOutput | DisassociateInstanceStorageConfigCommandOutput | DisassociateLambdaFunctionCommandOutput | DisassociateLexBotCommandOutput | DisassociatePhoneNumberContactFlowCommandOutput | DisassociateQueueQuickConnectsCommandOutput | DisassociateRoutingProfileQueuesCommandOutput | DisassociateSecurityKeyCommandOutput | DisassociateTrafficDistributionGroupUserCommandOutput | DisassociateUserProficienciesCommandOutput | DismissUserContactCommandOutput | GetAttachedFileCommandOutput | GetContactAttributesCommandOutput | GetCurrentMetricDataCommandOutput | GetCurrentUserDataCommandOutput | GetEffectiveHoursOfOperationsCommandOutput | GetFederationTokenCommandOutput | GetFlowAssociationCommandOutput | GetMetricDataCommandOutput | GetMetricDataV2CommandOutput | GetPromptFileCommandOutput | GetTaskTemplateCommandOutput | GetTrafficDistributionCommandOutput | ImportPhoneNumberCommandOutput | ListAgentStatusesCommandOutput | ListAnalyticsDataAssociationsCommandOutput | ListApprovedOriginsCommandOutput | ListAssociatedContactsCommandOutput | ListAuthenticationProfilesCommandOutput | ListBotsCommandOutput | ListContactEvaluationsCommandOutput | ListContactFlowModulesCommandOutput | ListContactFlowVersionsCommandOutput | ListContactFlowsCommandOutput | ListContactReferencesCommandOutput | ListDefaultVocabulariesCommandOutput | ListEvaluationFormVersionsCommandOutput | ListEvaluationFormsCommandOutput | ListFlowAssociationsCommandOutput | ListHoursOfOperationOverridesCommandOutput | ListHoursOfOperationsCommandOutput | ListInstanceAttributesCommandOutput | ListInstanceStorageConfigsCommandOutput | ListInstancesCommandOutput | ListIntegrationAssociationsCommandOutput | ListLambdaFunctionsCommandOutput | ListLexBotsCommandOutput | ListPhoneNumbersCommandOutput | ListPhoneNumbersV2CommandOutput | ListPredefinedAttributesCommandOutput | ListPromptsCommandOutput | ListQueueQuickConnectsCommandOutput | ListQueuesCommandOutput | ListQuickConnectsCommandOutput | ListRealtimeContactAnalysisSegmentsV2CommandOutput | ListRoutingProfileQueuesCommandOutput | ListRoutingProfilesCommandOutput | ListRulesCommandOutput | ListSecurityKeysCommandOutput | ListSecurityProfileApplicationsCommandOutput | ListSecurityProfilePermissionsCommandOutput | ListSecurityProfilesCommandOutput | ListTagsForResourceCommandOutput | ListTaskTemplatesCommandOutput | ListTrafficDistributionGroupUsersCommandOutput | ListTrafficDistributionGroupsCommandOutput | ListUseCasesCommandOutput | ListUserHierarchyGroupsCommandOutput | ListUserProficienciesCommandOutput | ListUsersCommandOutput | ListViewVersionsCommandOutput | ListViewsCommandOutput | MonitorContactCommandOutput | PauseContactCommandOutput | PutUserStatusCommandOutput | ReleasePhoneNumberCommandOutput | ReplicateInstanceCommandOutput | ResumeContactCommandOutput | ResumeContactRecordingCommandOutput | SearchAgentStatusesCommandOutput | SearchAvailablePhoneNumbersCommandOutput | SearchContactFlowModulesCommandOutput | SearchContactFlowsCommandOutput | SearchContactsCommandOutput | SearchEmailAddressesCommandOutput | SearchHoursOfOperationOverridesCommandOutput | SearchHoursOfOperationsCommandOutput | SearchPredefinedAttributesCommandOutput | SearchPromptsCommandOutput | SearchQueuesCommandOutput | SearchQuickConnectsCommandOutput | SearchResourceTagsCommandOutput | SearchRoutingProfilesCommandOutput | SearchSecurityProfilesCommandOutput | SearchUserHierarchyGroupsCommandOutput | SearchUsersCommandOutput | SearchVocabulariesCommandOutput | SendChatIntegrationEventCommandOutput | SendOutboundEmailCommandOutput | StartAttachedFileUploadCommandOutput | StartChatContactCommandOutput | StartContactEvaluationCommandOutput | StartContactRecordingCommandOutput | StartContactStreamingCommandOutput | StartEmailContactCommandOutput | StartOutboundChatContactCommandOutput | StartOutboundEmailContactCommandOutput | StartOutboundVoiceContactCommandOutput | StartScreenSharingCommandOutput | StartTaskContactCommandOutput | StartWebRTCContactCommandOutput | StopContactCommandOutput | StopContactRecordingCommandOutput | StopContactStreamingCommandOutput | SubmitContactEvaluationCommandOutput | SuspendContactRecordingCommandOutput | TagContactCommandOutput | TagResourceCommandOutput | TransferContactCommandOutput | UntagContactCommandOutput | UntagResourceCommandOutput | UpdateAgentStatusCommandOutput | UpdateAuthenticationProfileCommandOutput | UpdateContactAttributesCommandOutput | UpdateContactCommandOutput | UpdateContactEvaluationCommandOutput | UpdateContactFlowContentCommandOutput | UpdateContactFlowMetadataCommandOutput | UpdateContactFlowModuleContentCommandOutput | UpdateContactFlowModuleMetadataCommandOutput | UpdateContactFlowNameCommandOutput | UpdateContactRoutingDataCommandOutput | UpdateContactScheduleCommandOutput | UpdateEmailAddressMetadataCommandOutput | UpdateEvaluationFormCommandOutput | UpdateHoursOfOperationCommandOutput | UpdateHoursOfOperationOverrideCommandOutput | UpdateInstanceAttributeCommandOutput | UpdateInstanceStorageConfigCommandOutput | UpdateParticipantAuthenticationCommandOutput | UpdateParticipantRoleConfigCommandOutput | UpdatePhoneNumberCommandOutput | UpdatePhoneNumberMetadataCommandOutput | UpdatePredefinedAttributeCommandOutput | UpdatePromptCommandOutput | UpdateQueueHoursOfOperationCommandOutput | UpdateQueueMaxContactsCommandOutput | UpdateQueueNameCommandOutput | UpdateQueueOutboundCallerConfigCommandOutput | UpdateQueueOutboundEmailConfigCommandOutput | UpdateQueueStatusCommandOutput | UpdateQuickConnectConfigCommandOutput | UpdateQuickConnectNameCommandOutput | UpdateRoutingProfileAgentAvailabilityTimerCommandOutput | UpdateRoutingProfileConcurrencyCommandOutput | UpdateRoutingProfileDefaultOutboundQueueCommandOutput | UpdateRoutingProfileNameCommandOutput | UpdateRoutingProfileQueuesCommandOutput | UpdateRuleCommandOutput | UpdateSecurityProfileCommandOutput | UpdateTaskTemplateCommandOutput | UpdateTrafficDistributionCommandOutput | UpdateUserHierarchyCommandOutput | UpdateUserHierarchyGroupNameCommandOutput | UpdateUserHierarchyStructureCommandOutput | UpdateUserIdentityInfoCommandOutput | UpdateUserPhoneConfigCommandOutput | UpdateUserProficienciesCommandOutput | UpdateUserRoutingProfileCommandOutput | UpdateUserSecurityProfilesCommandOutput | UpdateViewContentCommandOutput | UpdateViewMetadataCommandOutput;
|
|
301
302
|
/**
|
|
302
303
|
* @public
|
|
303
304
|
*/
|
|
@@ -27,7 +27,7 @@ declare const AssociateUserProficienciesCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p
|
|
30
|
+
* <p>Associates a set of proficiencies with a user.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -39,7 +39,7 @@ declare const CreateContactFlowCommand_base: {
|
|
|
39
39
|
* const input = { // CreateContactFlowRequest
|
|
40
40
|
* InstanceId: "STRING_VALUE", // required
|
|
41
41
|
* Name: "STRING_VALUE", // required
|
|
42
|
-
* Type: "CONTACT_FLOW" || "CUSTOMER_QUEUE" || "CUSTOMER_HOLD" || "CUSTOMER_WHISPER" || "AGENT_HOLD" || "AGENT_WHISPER" || "OUTBOUND_WHISPER" || "AGENT_TRANSFER" || "QUEUE_TRANSFER", // required
|
|
42
|
+
* Type: "CONTACT_FLOW" || "CUSTOMER_QUEUE" || "CUSTOMER_HOLD" || "CUSTOMER_WHISPER" || "AGENT_HOLD" || "AGENT_WHISPER" || "OUTBOUND_WHISPER" || "AGENT_TRANSFER" || "QUEUE_TRANSFER" || "CAMPAIGN", // required
|
|
43
43
|
* Description: "STRING_VALUE",
|
|
44
44
|
* Content: "STRING_VALUE", // required
|
|
45
45
|
* Status: "PUBLISHED" || "SAVED",
|
|
@@ -28,11 +28,10 @@ declare const CreateContactFlowVersionCommand_base: {
|
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
30
|
* <p>Publishes a new version of the flow provided. Versions are immutable and monotonically
|
|
31
|
-
* increasing. If
|
|
32
|
-
*
|
|
33
|
-
* is
|
|
34
|
-
*
|
|
35
|
-
* <code>Campaign</code>.</p>
|
|
31
|
+
* increasing. If the <code>FlowContentSha256</code> provided is different from the
|
|
32
|
+
* <code>FlowContentSha256</code> of the <code>$LATEST</code> published flow content, then an error
|
|
33
|
+
* is returned. This API only supports creating versions for flows of type
|
|
34
|
+
* <code>Campaign</code>.</p>
|
|
36
35
|
* @example
|
|
37
36
|
* Use a bare-bones client and the command you need to make an API call.
|
|
38
37
|
* ```javascript
|
|
@@ -44,6 +43,7 @@ declare const CreateContactFlowVersionCommand_base: {
|
|
|
44
43
|
* Description: "STRING_VALUE",
|
|
45
44
|
* ContactFlowId: "STRING_VALUE", // required
|
|
46
45
|
* FlowContentSha256: "STRING_VALUE",
|
|
46
|
+
* ContactFlowVersion: Number("long"),
|
|
47
47
|
* LastModifiedTime: new Date("TIMESTAMP"),
|
|
48
48
|
* LastModifiedRegion: "STRING_VALUE",
|
|
49
49
|
* };
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
4
|
+
import { DeleteContactFlowVersionRequest, DeleteContactFlowVersionResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteContactFlowVersionCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteContactFlowVersionCommandInput extends DeleteContactFlowVersionRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteContactFlowVersionCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteContactFlowVersionCommandOutput extends DeleteContactFlowVersionResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteContactFlowVersionCommand_base: {
|
|
25
|
+
new (input: DeleteContactFlowVersionCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteContactFlowVersionCommandInput, DeleteContactFlowVersionCommandOutput, ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: DeleteContactFlowVersionCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteContactFlowVersionCommandInput, DeleteContactFlowVersionCommandOutput, ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Deletes the particular version specified in flow version identifier.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { ConnectClient, DeleteContactFlowVersionCommand } from "@aws-sdk/client-connect"; // ES Modules import
|
|
35
|
+
* // const { ConnectClient, DeleteContactFlowVersionCommand } = require("@aws-sdk/client-connect"); // CommonJS import
|
|
36
|
+
* const client = new ConnectClient(config);
|
|
37
|
+
* const input = { // DeleteContactFlowVersionRequest
|
|
38
|
+
* InstanceId: "STRING_VALUE", // required
|
|
39
|
+
* ContactFlowId: "STRING_VALUE", // required
|
|
40
|
+
* ContactFlowVersion: Number("long"), // required
|
|
41
|
+
* };
|
|
42
|
+
* const command = new DeleteContactFlowVersionCommand(input);
|
|
43
|
+
* const response = await client.send(command);
|
|
44
|
+
* // {};
|
|
45
|
+
*
|
|
46
|
+
* ```
|
|
47
|
+
*
|
|
48
|
+
* @param DeleteContactFlowVersionCommandInput - {@link DeleteContactFlowVersionCommandInput}
|
|
49
|
+
* @returns {@link DeleteContactFlowVersionCommandOutput}
|
|
50
|
+
* @see {@link DeleteContactFlowVersionCommandInput} for command's `input` shape.
|
|
51
|
+
* @see {@link DeleteContactFlowVersionCommandOutput} for command's `response` shape.
|
|
52
|
+
* @see {@link ConnectClientResolvedConfig | config} for ConnectClient's `config` shape.
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
55
|
+
* <p>You do not have sufficient permissions to perform this action.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
58
|
+
* <p>Request processing failed because of an error or failure with the service.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
61
|
+
* <p>One or more of the specified parameters are not valid.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
64
|
+
* <p>The request is not valid.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
67
|
+
* <p>The specified resource was not found.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
70
|
+
* <p>The throttling limit has been exceeded.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link ConnectServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from Connect service.</p>
|
|
74
|
+
*
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
77
|
+
export declare class DeleteContactFlowVersionCommand extends DeleteContactFlowVersionCommand_base {
|
|
78
|
+
/** @internal type navigation helper, not in runtime. */
|
|
79
|
+
protected static __types: {
|
|
80
|
+
api: {
|
|
81
|
+
input: DeleteContactFlowVersionRequest;
|
|
82
|
+
output: {};
|
|
83
|
+
};
|
|
84
|
+
sdk: {
|
|
85
|
+
input: DeleteContactFlowVersionCommandInput;
|
|
86
|
+
output: DeleteContactFlowVersionCommandOutput;
|
|
87
|
+
};
|
|
88
|
+
};
|
|
89
|
+
}
|
|
@@ -27,7 +27,7 @@ declare const DeleteQueueCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Deletes a queue
|
|
30
|
+
* <p>Deletes a queue.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
4
|
-
import { DeleteRuleRequest } from "../models/
|
|
4
|
+
import { DeleteRuleRequest } from "../models/models_1";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
4
|
-
import { DeleteSecurityProfileRequest } from "../models/
|
|
4
|
+
import { DeleteSecurityProfileRequest } from "../models/models_1";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -34,6 +34,8 @@ declare const DescribeContactFlowCommand_base: {
|
|
|
34
34
|
* of a Flow. For example, <code>arn:aws:.../contact-flow/\{id\}:$SAVED</code>. After a flow is
|
|
35
35
|
* published, <code>$SAVED</code> needs to be supplied to view saved content that has not been
|
|
36
36
|
* published.</p>
|
|
37
|
+
* <p>Use <code>arn:aws:.../contact-flow/\{id\}:\{version\}</code> to retrieve the content of a
|
|
38
|
+
* specific flow version.</p>
|
|
37
39
|
* <p>In the response, <b>Status</b> indicates the flow status as either
|
|
38
40
|
* <code>SAVED</code> or <code>PUBLISHED</code>. The <code>PUBLISHED</code> status will initiate
|
|
39
41
|
* validation on the content. <code>SAVED</code> does not initiate validation of the content.
|
|
@@ -56,7 +58,7 @@ declare const DescribeContactFlowCommand_base: {
|
|
|
56
58
|
* // Arn: "STRING_VALUE",
|
|
57
59
|
* // Id: "STRING_VALUE",
|
|
58
60
|
* // Name: "STRING_VALUE",
|
|
59
|
-
* // Type: "CONTACT_FLOW" || "CUSTOMER_QUEUE" || "CUSTOMER_HOLD" || "CUSTOMER_WHISPER" || "AGENT_HOLD" || "AGENT_WHISPER" || "OUTBOUND_WHISPER" || "AGENT_TRANSFER" || "QUEUE_TRANSFER",
|
|
61
|
+
* // Type: "CONTACT_FLOW" || "CUSTOMER_QUEUE" || "CUSTOMER_HOLD" || "CUSTOMER_WHISPER" || "AGENT_HOLD" || "AGENT_WHISPER" || "OUTBOUND_WHISPER" || "AGENT_TRANSFER" || "QUEUE_TRANSFER" || "CAMPAIGN",
|
|
60
62
|
* // State: "ACTIVE" || "ARCHIVED",
|
|
61
63
|
* // Status: "PUBLISHED" || "SAVED",
|
|
62
64
|
* // Description: "STRING_VALUE",
|
|
@@ -41,7 +41,7 @@ declare const ListContactFlowsCommand_base: {
|
|
|
41
41
|
* const input = { // ListContactFlowsRequest
|
|
42
42
|
* InstanceId: "STRING_VALUE", // required
|
|
43
43
|
* ContactFlowTypes: [ // ContactFlowTypes
|
|
44
|
-
* "CONTACT_FLOW" || "CUSTOMER_QUEUE" || "CUSTOMER_HOLD" || "CUSTOMER_WHISPER" || "AGENT_HOLD" || "AGENT_WHISPER" || "OUTBOUND_WHISPER" || "AGENT_TRANSFER" || "QUEUE_TRANSFER",
|
|
44
|
+
* "CONTACT_FLOW" || "CUSTOMER_QUEUE" || "CUSTOMER_HOLD" || "CUSTOMER_WHISPER" || "AGENT_HOLD" || "AGENT_WHISPER" || "OUTBOUND_WHISPER" || "AGENT_TRANSFER" || "QUEUE_TRANSFER" || "CAMPAIGN",
|
|
45
45
|
* ],
|
|
46
46
|
* NextToken: "STRING_VALUE",
|
|
47
47
|
* MaxResults: Number("int"),
|
|
@@ -54,7 +54,7 @@ declare const ListContactFlowsCommand_base: {
|
|
|
54
54
|
* // Id: "STRING_VALUE",
|
|
55
55
|
* // Arn: "STRING_VALUE",
|
|
56
56
|
* // Name: "STRING_VALUE",
|
|
57
|
-
* // ContactFlowType: "CONTACT_FLOW" || "CUSTOMER_QUEUE" || "CUSTOMER_HOLD" || "CUSTOMER_WHISPER" || "AGENT_HOLD" || "AGENT_WHISPER" || "OUTBOUND_WHISPER" || "AGENT_TRANSFER" || "QUEUE_TRANSFER",
|
|
57
|
+
* // ContactFlowType: "CONTACT_FLOW" || "CUSTOMER_QUEUE" || "CUSTOMER_HOLD" || "CUSTOMER_WHISPER" || "AGENT_HOLD" || "AGENT_WHISPER" || "OUTBOUND_WHISPER" || "AGENT_TRANSFER" || "QUEUE_TRANSFER" || "CAMPAIGN",
|
|
58
58
|
* // ContactFlowState: "ACTIVE" || "ARCHIVED",
|
|
59
59
|
* // ContactFlowStatus: "PUBLISHED" || "SAVED",
|
|
60
60
|
* // },
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
4
|
-
import { ListQuickConnectsRequest
|
|
4
|
+
import { ListQuickConnectsRequest } from "../models/models_1";
|
|
5
|
+
import { ListQuickConnectsResponse } from "../models/models_2";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|