@aws-sdk/client-connect 3.1000.0 → 3.1002.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 +21 -0
- package/dist-cjs/index.js +42 -0
- package/dist-cjs/schemas/schemas_0.js +97 -37
- package/dist-es/Connect.js +6 -0
- package/dist-es/commands/AssociateQueueEmailAddressesCommand.js +16 -0
- package/dist-es/commands/DisassociateQueueEmailAddressesCommand.js +16 -0
- package/dist-es/commands/ListQueueEmailAddressesCommand.js +16 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +66 -6
- package/dist-types/Connect.d.ts +21 -0
- package/dist-types/ConnectClient.d.ts +5 -2
- package/dist-types/commands/AssociateQueueEmailAddressesCommand.d.ts +120 -0
- package/dist-types/commands/CreateQueueCommand.d.ts +5 -0
- package/dist-types/commands/DisassociateQueueEmailAddressesCommand.d.ts +109 -0
- package/dist-types/commands/GetTestCaseExecutionSummaryCommand.d.ts +2 -1
- package/dist-types/commands/GetTrafficDistributionCommand.d.ts +1 -2
- package/dist-types/commands/ListQueueEmailAddressesCommand.d.ts +121 -0
- package/dist-types/commands/SearchSecurityProfilesCommand.d.ts +1 -2
- package/dist-types/commands/SearchTestCasesCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +44 -67
- package/dist-types/models/models_1.d.ts +97 -55
- package/dist-types/models/models_2.d.ts +126 -128
- package/dist-types/models/models_3.d.ts +129 -2
- package/dist-types/schemas/schemas_0.d.ts +9 -0
- package/dist-types/ts3.4/Connect.d.ts +51 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/AssociateQueueEmailAddressesCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DisassociateQueueEmailAddressesCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetTestCaseExecutionSummaryCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetTrafficDistributionCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListQueueEmailAddressesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SearchSecurityProfilesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/SearchTestCasesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +10 -15
- package/dist-types/ts3.4/models/models_1.d.ts +21 -16
- package/dist-types/ts3.4/models/models_2.d.ts +31 -29
- package/dist-types/ts3.4/models/models_3.d.ts +28 -3
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -0
- package/package.json +13 -13
|
@@ -11,6 +11,7 @@ export * from "./AssociateInstanceStorageConfigCommand";
|
|
|
11
11
|
export * from "./AssociateLambdaFunctionCommand";
|
|
12
12
|
export * from "./AssociateLexBotCommand";
|
|
13
13
|
export * from "./AssociatePhoneNumberContactFlowCommand";
|
|
14
|
+
export * from "./AssociateQueueEmailAddressesCommand";
|
|
14
15
|
export * from "./AssociateQueueQuickConnectsCommand";
|
|
15
16
|
export * from "./AssociateRoutingProfileQueuesCommand";
|
|
16
17
|
export * from "./AssociateSecurityKeyCommand";
|
|
@@ -146,6 +147,7 @@ export * from "./DisassociateInstanceStorageConfigCommand";
|
|
|
146
147
|
export * from "./DisassociateLambdaFunctionCommand";
|
|
147
148
|
export * from "./DisassociateLexBotCommand";
|
|
148
149
|
export * from "./DisassociatePhoneNumberContactFlowCommand";
|
|
150
|
+
export * from "./DisassociateQueueEmailAddressesCommand";
|
|
149
151
|
export * from "./DisassociateQueueQuickConnectsCommand";
|
|
150
152
|
export * from "./DisassociateRoutingProfileQueuesCommand";
|
|
151
153
|
export * from "./DisassociateSecurityKeyCommand";
|
|
@@ -208,6 +210,7 @@ export * from "./ListPhoneNumbersCommand";
|
|
|
208
210
|
export * from "./ListPhoneNumbersV2Command";
|
|
209
211
|
export * from "./ListPredefinedAttributesCommand";
|
|
210
212
|
export * from "./ListPromptsCommand";
|
|
213
|
+
export * from "./ListQueueEmailAddressesCommand";
|
|
211
214
|
export * from "./ListQueueQuickConnectsCommand";
|
|
212
215
|
export * from "./ListQueuesCommand";
|
|
213
216
|
export * from "./ListQuickConnectsCommand";
|
|
@@ -144,6 +144,8 @@ const _APNCFR = "AssociatePhoneNumberContactFlowRequest";
|
|
|
144
144
|
const _APS = "AuthenticationProfileSummary";
|
|
145
145
|
const _APSL = "AuthenticationProfileSummaryList";
|
|
146
146
|
const _APu = "AuthenticationProfile";
|
|
147
|
+
const _AQEA = "AssociateQueueEmailAddresses";
|
|
148
|
+
const _AQEAR = "AssociateQueueEmailAddressesRequest";
|
|
147
149
|
const _AQI = "AssociatedQueueIds";
|
|
148
150
|
const _AQM = "AgentQualityMetrics";
|
|
149
151
|
const _AQMI = "AudioQualityMetricsInfo";
|
|
@@ -725,6 +727,8 @@ const _DQCR = "DeleteQuickConnectRequest";
|
|
|
725
727
|
const _DQCRe = "DescribeQuickConnectRequest";
|
|
726
728
|
const _DQCRes = "DescribeQuickConnectResponse";
|
|
727
729
|
const _DQCe = "DescribeQuickConnect";
|
|
730
|
+
const _DQEA = "DisassociateQueueEmailAddresses";
|
|
731
|
+
const _DQEAR = "DisassociateQueueEmailAddressesRequest";
|
|
728
732
|
const _DQQC = "DisassociateQueueQuickConnects";
|
|
729
733
|
const _DQQCR = "DisassociateQueueQuickConnectsRequest";
|
|
730
734
|
const _DQR = "DeleteQueueRequest";
|
|
@@ -878,24 +882,30 @@ const _Dis = "Distribution";
|
|
|
878
882
|
const _E = "Email";
|
|
879
883
|
const _EA = "EmailAddress";
|
|
880
884
|
const _EAA = "EmailAddressArn";
|
|
885
|
+
const _EAC = "EmailAddressesConfig";
|
|
886
|
+
const _EACL = "EmailAddressConfigList";
|
|
887
|
+
const _EACm = "EmailAddressConfig";
|
|
881
888
|
const _EAD = "EvaluationAnswerData";
|
|
882
889
|
const _EADN = "EmailAddressDisplayName";
|
|
883
890
|
const _EAI = "EmailAddressId";
|
|
884
891
|
const _EAIM = "EvaluationAnswersInputMap";
|
|
885
|
-
const _EAIm = "
|
|
892
|
+
const _EAIm = "EmailAddressesId";
|
|
893
|
+
const _EAIma = "EmailAddressInfo";
|
|
886
894
|
const _EAIv = "EvaluationAnswerInput";
|
|
887
895
|
const _EAL = "EmailAddressList";
|
|
888
896
|
const _EAM = "EmailAddressMetadata";
|
|
889
897
|
const _EAMD = "EnableAnswerMachineDetection";
|
|
898
|
+
const _EAML = "EmailAddressMetadataList";
|
|
890
899
|
const _EAO = "EvaluationAnswerOutput";
|
|
891
900
|
const _EAOM = "EvaluationAnswersOutputMap";
|
|
892
901
|
const _EARC = "EvaluationAutomationRuleCategory";
|
|
893
902
|
const _EARCL = "EvaluationAutomationRuleCategoryList";
|
|
894
903
|
const _EARL = "EmailAddressRecipientList";
|
|
895
|
-
const _EAS = "
|
|
904
|
+
const _EAS = "EmailAddressSummary";
|
|
896
905
|
const _EASC = "EmailAddressSearchCriteria";
|
|
897
906
|
const _EASCL = "EmailAddressSearchConditionList";
|
|
898
907
|
const _EASF = "EmailAddressSearchFilter";
|
|
908
|
+
const _EASv = "EvaluationAcknowledgementSummary";
|
|
899
909
|
const _EATA = "EndAssociatedTasksAction";
|
|
900
910
|
const _EATAD = "EndAssociatedTasksActionDefinition";
|
|
901
911
|
const _EAm = "EmailAttachment";
|
|
@@ -1224,6 +1234,7 @@ const _ICFE = "InvalidContactFlowException";
|
|
|
1224
1234
|
const _ICFME = "InvalidContactFlowModuleException";
|
|
1225
1235
|
const _ICI = "InitialContactId";
|
|
1226
1236
|
const _ID = "IsDefault";
|
|
1237
|
+
const _IDOE = "IsDefaultOutboundEmail";
|
|
1227
1238
|
const _IDn = "InitializationData";
|
|
1228
1239
|
const _IDnp = "InputData";
|
|
1229
1240
|
const _IDnt = "IntervalDetails";
|
|
@@ -1430,6 +1441,9 @@ const _LQ = "ListQueues";
|
|
|
1430
1441
|
const _LQC = "ListQuickConnects";
|
|
1431
1442
|
const _LQCR = "ListQuickConnectsRequest";
|
|
1432
1443
|
const _LQCRi = "ListQuickConnectsResponse";
|
|
1444
|
+
const _LQEA = "ListQueueEmailAddresses";
|
|
1445
|
+
const _LQEAR = "ListQueueEmailAddressesRequest";
|
|
1446
|
+
const _LQEARi = "ListQueueEmailAddressesResponse";
|
|
1433
1447
|
const _LQQC = "ListQueueQuickConnects";
|
|
1434
1448
|
const _LQQCR = "ListQueueQuickConnectsRequest";
|
|
1435
1449
|
const _LQQCRi = "ListQueueQuickConnectsResponse";
|
|
@@ -3214,6 +3228,11 @@ export var AssociatePhoneNumberContactFlowRequest$ = [3, n0, _APNCFR,
|
|
|
3214
3228
|
[_PNI, _II, _CFI],
|
|
3215
3229
|
[[0, 1], 0, 0], 3
|
|
3216
3230
|
];
|
|
3231
|
+
export var AssociateQueueEmailAddressesRequest$ = [3, n0, _AQEAR,
|
|
3232
|
+
0,
|
|
3233
|
+
[_II, _QI, _EAC, _CT],
|
|
3234
|
+
[[0, 1], [0, 1], () => EmailAddressConfigList, [0, 4]], 3
|
|
3235
|
+
];
|
|
3217
3236
|
export var AssociateQueueQuickConnectsRequest$ = [3, n0, _AQQCR,
|
|
3218
3237
|
0,
|
|
3219
3238
|
[_II, _QI, _QCI],
|
|
@@ -3926,8 +3945,8 @@ export var CreatePushNotificationRegistrationResponse$ = [3, n0, _CPNRRr,
|
|
|
3926
3945
|
];
|
|
3927
3946
|
export var CreateQueueRequest$ = [3, n0, _CQR,
|
|
3928
3947
|
0,
|
|
3929
|
-
[_II, _N, _HOOI, _D, _OCC, _OEC, _MCa, _QCI, _Ta],
|
|
3930
|
-
[[0, 1], 0, 0, 0, () => OutboundCallerConfig$, () => OutboundEmailConfig$, 1, 64 | 0, 128 | 0], 3
|
|
3948
|
+
[_II, _N, _HOOI, _D, _OCC, _OEC, _MCa, _QCI, _EAC, _Ta],
|
|
3949
|
+
[[0, 1], 0, 0, 0, () => OutboundCallerConfig$, () => OutboundEmailConfig$, 1, 64 | 0, () => EmailAddressConfigList, 128 | 0], 3
|
|
3931
3950
|
];
|
|
3932
3951
|
export var CreateQueueResponse$ = [3, n0, _CQRr,
|
|
3933
3952
|
0,
|
|
@@ -4909,6 +4928,11 @@ export var DisassociatePhoneNumberContactFlowRequest$ = [3, n0, _DPNCFR,
|
|
|
4909
4928
|
[_PNI, _II],
|
|
4910
4929
|
[[0, 1], [0, { [_hQ]: _iI }]], 2
|
|
4911
4930
|
];
|
|
4931
|
+
export var DisassociateQueueEmailAddressesRequest$ = [3, n0, _DQEAR,
|
|
4932
|
+
0,
|
|
4933
|
+
[_II, _QI, _EAIm, _CT],
|
|
4934
|
+
[[0, 1], [0, 1], 64 | 0, [0, 4]], 3
|
|
4935
|
+
];
|
|
4912
4936
|
export var DisassociateQueueQuickConnectsRequest$ = [3, n0, _DQQCR,
|
|
4913
4937
|
0,
|
|
4914
4938
|
[_II, _QI, _QCI],
|
|
@@ -4994,7 +5018,12 @@ export var EffectiveOverrideHours$ = [3, n0, _EOH,
|
|
|
4994
5018
|
[_Da, _OHv],
|
|
4995
5019
|
[0, () => OverrideHours]
|
|
4996
5020
|
];
|
|
4997
|
-
export var
|
|
5021
|
+
export var EmailAddressConfig$ = [3, n0, _EACm,
|
|
5022
|
+
0,
|
|
5023
|
+
[_EAI],
|
|
5024
|
+
[0], 1
|
|
5025
|
+
];
|
|
5026
|
+
export var EmailAddressInfo$ = [3, n0, _EAIma,
|
|
4998
5027
|
0,
|
|
4999
5028
|
[_EA, _DN],
|
|
5000
5029
|
[[() => EmailAddress, 0], [() => EmailAddressDisplayName, 0]], 1
|
|
@@ -5014,6 +5043,11 @@ export var EmailAddressSearchFilter$ = [3, n0, _EASF,
|
|
|
5014
5043
|
[_TF],
|
|
5015
5044
|
[() => ControlPlaneTagFilter$]
|
|
5016
5045
|
];
|
|
5046
|
+
export var EmailAddressSummary$ = [3, n0, _EAS,
|
|
5047
|
+
0,
|
|
5048
|
+
[_I, _A, _IDOE],
|
|
5049
|
+
[0, 0, 2]
|
|
5050
|
+
];
|
|
5017
5051
|
export var EmailAttachment$ = [3, n0, _EAm,
|
|
5018
5052
|
0,
|
|
5019
5053
|
[_FN, _SUr],
|
|
@@ -5084,7 +5118,7 @@ export var EvaluationAcknowledgement$ = [3, n0, _EAva,
|
|
|
5084
5118
|
[_ATck, _AB, _ACc],
|
|
5085
5119
|
[4, 0, 0], 2
|
|
5086
5120
|
];
|
|
5087
|
-
export var EvaluationAcknowledgementSummary$ = [3, n0,
|
|
5121
|
+
export var EvaluationAcknowledgementSummary$ = [3, n0, _EASv,
|
|
5088
5122
|
0,
|
|
5089
5123
|
[_ATck, _AB, _ACc],
|
|
5090
5124
|
[4, 0, 0]
|
|
@@ -6189,6 +6223,16 @@ export var ListPromptsResponse$ = [3, n0, _LPRi,
|
|
|
6189
6223
|
[_PSL, _NT],
|
|
6190
6224
|
[() => PromptSummaryList, 0]
|
|
6191
6225
|
];
|
|
6226
|
+
export var ListQueueEmailAddressesRequest$ = [3, n0, _LQEAR,
|
|
6227
|
+
0,
|
|
6228
|
+
[_II, _QI, _NT, _MR],
|
|
6229
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
6230
|
+
];
|
|
6231
|
+
export var ListQueueEmailAddressesResponse$ = [3, n0, _LQEARi,
|
|
6232
|
+
0,
|
|
6233
|
+
[_NT, _EAML, _LMT, _LMR],
|
|
6234
|
+
[0, () => EmailAddressMetadataList, 4, 0]
|
|
6235
|
+
];
|
|
6192
6236
|
export var ListQueueQuickConnectsRequest$ = [3, n0, _LQQCR,
|
|
6193
6237
|
0,
|
|
6194
6238
|
[_II, _QI, _NT, _MR],
|
|
@@ -8964,10 +9008,17 @@ var EffectiveHoursOfOperationList = [1, n0, _EHOOL,
|
|
|
8964
9008
|
var EffectiveOverrideHoursList = [1, n0, _EOHL,
|
|
8965
9009
|
0, () => EffectiveOverrideHours$
|
|
8966
9010
|
];
|
|
9011
|
+
var EmailAddressConfigList = [1, n0, _EACL,
|
|
9012
|
+
0, () => EmailAddressConfig$
|
|
9013
|
+
];
|
|
9014
|
+
var EmailAddressIdList = 64 | 0;
|
|
8967
9015
|
var EmailAddressList = [1, n0, _EAL,
|
|
8968
9016
|
0, [() => EmailAddressMetadata$,
|
|
8969
9017
|
0]
|
|
8970
9018
|
];
|
|
9019
|
+
var EmailAddressMetadataList = [1, n0, _EAML,
|
|
9020
|
+
0, () => EmailAddressSummary$
|
|
9021
|
+
];
|
|
8971
9022
|
var EmailAddressRecipientList = [1, n0, _EARL,
|
|
8972
9023
|
0, [() => EmailAddressInfo$,
|
|
8973
9024
|
0]
|
|
@@ -9714,6 +9765,9 @@ export var AssociateLexBot$ = [9, n0, _ALB,
|
|
|
9714
9765
|
export var AssociatePhoneNumberContactFlow$ = [9, n0, _APNCF,
|
|
9715
9766
|
{ [_h]: ["PUT", "/phone-number/{PhoneNumberId}/contact-flow", 200] }, () => AssociatePhoneNumberContactFlowRequest$, () => __Unit
|
|
9716
9767
|
];
|
|
9768
|
+
export var AssociateQueueEmailAddresses$ = [9, n0, _AQEA,
|
|
9769
|
+
{ [_h]: ["POST", "/queues/{InstanceId}/{QueueId}/associate-email-addresses", 200] }, () => AssociateQueueEmailAddressesRequest$, () => __Unit
|
|
9770
|
+
];
|
|
9717
9771
|
export var AssociateQueueQuickConnects$ = [9, n0, _AQQC,
|
|
9718
9772
|
{ [_h]: ["POST", "/queues/{InstanceId}/{QueueId}/associate-quick-connects", 200] }, () => AssociateQueueQuickConnectsRequest$, () => __Unit
|
|
9719
9773
|
];
|
|
@@ -10119,6 +10173,9 @@ export var DisassociateLexBot$ = [9, n0, _DLB,
|
|
|
10119
10173
|
export var DisassociatePhoneNumberContactFlow$ = [9, n0, _DPNCF,
|
|
10120
10174
|
{ [_h]: ["DELETE", "/phone-number/{PhoneNumberId}/contact-flow", 200] }, () => DisassociatePhoneNumberContactFlowRequest$, () => __Unit
|
|
10121
10175
|
];
|
|
10176
|
+
export var DisassociateQueueEmailAddresses$ = [9, n0, _DQEA,
|
|
10177
|
+
{ [_h]: ["POST", "/queues/{InstanceId}/{QueueId}/disassociate-email-addresses", 200] }, () => DisassociateQueueEmailAddressesRequest$, () => __Unit
|
|
10178
|
+
];
|
|
10122
10179
|
export var DisassociateQueueQuickConnects$ = [9, n0, _DQQC,
|
|
10123
10180
|
{ [_h]: ["POST", "/queues/{InstanceId}/{QueueId}/disassociate-quick-connects", 200] }, () => DisassociateQueueQuickConnectsRequest$, () => __Unit
|
|
10124
10181
|
];
|
|
@@ -10305,6 +10362,9 @@ export var ListPredefinedAttributes$ = [9, n0, _LPA,
|
|
|
10305
10362
|
export var ListPrompts$ = [9, n0, _LP,
|
|
10306
10363
|
{ [_h]: ["GET", "/prompts-summary/{InstanceId}", 200] }, () => ListPromptsRequest$, () => ListPromptsResponse$
|
|
10307
10364
|
];
|
|
10365
|
+
export var ListQueueEmailAddresses$ = [9, n0, _LQEA,
|
|
10366
|
+
{ [_h]: ["GET", "/queues/{InstanceId}/{QueueId}/email-addresses", 200] }, () => ListQueueEmailAddressesRequest$, () => ListQueueEmailAddressesResponse$
|
|
10367
|
+
];
|
|
10308
10368
|
export var ListQueueQuickConnects$ = [9, n0, _LQQC,
|
|
10309
10369
|
{ [_h]: ["GET", "/queues/{InstanceId}/{QueueId}/quick-connects", 200] }, () => ListQueueQuickConnectsRequest$, () => ListQueueQuickConnectsResponse$
|
|
10310
10370
|
];
|
package/dist-types/Connect.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ import { AssociateInstanceStorageConfigCommandInput, AssociateInstanceStorageCon
|
|
|
12
12
|
import { AssociateLambdaFunctionCommandInput, AssociateLambdaFunctionCommandOutput } from "./commands/AssociateLambdaFunctionCommand";
|
|
13
13
|
import { AssociateLexBotCommandInput, AssociateLexBotCommandOutput } from "./commands/AssociateLexBotCommand";
|
|
14
14
|
import { AssociatePhoneNumberContactFlowCommandInput, AssociatePhoneNumberContactFlowCommandOutput } from "./commands/AssociatePhoneNumberContactFlowCommand";
|
|
15
|
+
import { AssociateQueueEmailAddressesCommandInput, AssociateQueueEmailAddressesCommandOutput } from "./commands/AssociateQueueEmailAddressesCommand";
|
|
15
16
|
import { AssociateQueueQuickConnectsCommandInput, AssociateQueueQuickConnectsCommandOutput } from "./commands/AssociateQueueQuickConnectsCommand";
|
|
16
17
|
import { AssociateRoutingProfileQueuesCommandInput, AssociateRoutingProfileQueuesCommandOutput } from "./commands/AssociateRoutingProfileQueuesCommand";
|
|
17
18
|
import { AssociateSecurityKeyCommandInput, AssociateSecurityKeyCommandOutput } from "./commands/AssociateSecurityKeyCommand";
|
|
@@ -147,6 +148,7 @@ import { DisassociateInstanceStorageConfigCommandInput, DisassociateInstanceStor
|
|
|
147
148
|
import { DisassociateLambdaFunctionCommandInput, DisassociateLambdaFunctionCommandOutput } from "./commands/DisassociateLambdaFunctionCommand";
|
|
148
149
|
import { DisassociateLexBotCommandInput, DisassociateLexBotCommandOutput } from "./commands/DisassociateLexBotCommand";
|
|
149
150
|
import { DisassociatePhoneNumberContactFlowCommandInput, DisassociatePhoneNumberContactFlowCommandOutput } from "./commands/DisassociatePhoneNumberContactFlowCommand";
|
|
151
|
+
import { DisassociateQueueEmailAddressesCommandInput, DisassociateQueueEmailAddressesCommandOutput } from "./commands/DisassociateQueueEmailAddressesCommand";
|
|
150
152
|
import { DisassociateQueueQuickConnectsCommandInput, DisassociateQueueQuickConnectsCommandOutput } from "./commands/DisassociateQueueQuickConnectsCommand";
|
|
151
153
|
import { DisassociateRoutingProfileQueuesCommandInput, DisassociateRoutingProfileQueuesCommandOutput } from "./commands/DisassociateRoutingProfileQueuesCommand";
|
|
152
154
|
import { DisassociateSecurityKeyCommandInput, DisassociateSecurityKeyCommandOutput } from "./commands/DisassociateSecurityKeyCommand";
|
|
@@ -209,6 +211,7 @@ import { ListPhoneNumbersCommandInput, ListPhoneNumbersCommandOutput } from "./c
|
|
|
209
211
|
import { ListPhoneNumbersV2CommandInput, ListPhoneNumbersV2CommandOutput } from "./commands/ListPhoneNumbersV2Command";
|
|
210
212
|
import { ListPredefinedAttributesCommandInput, ListPredefinedAttributesCommandOutput } from "./commands/ListPredefinedAttributesCommand";
|
|
211
213
|
import { ListPromptsCommandInput, ListPromptsCommandOutput } from "./commands/ListPromptsCommand";
|
|
214
|
+
import { ListQueueEmailAddressesCommandInput, ListQueueEmailAddressesCommandOutput } from "./commands/ListQueueEmailAddressesCommand";
|
|
212
215
|
import { ListQueueQuickConnectsCommandInput, ListQueueQuickConnectsCommandOutput } from "./commands/ListQueueQuickConnectsCommand";
|
|
213
216
|
import { ListQueuesCommandInput, ListQueuesCommandOutput } from "./commands/ListQueuesCommand";
|
|
214
217
|
import { ListQuickConnectsCommandInput, ListQuickConnectsCommandOutput } from "./commands/ListQuickConnectsCommand";
|
|
@@ -443,6 +446,12 @@ export interface Connect {
|
|
|
443
446
|
associatePhoneNumberContactFlow(args: AssociatePhoneNumberContactFlowCommandInput, options?: __HttpHandlerOptions): Promise<AssociatePhoneNumberContactFlowCommandOutput>;
|
|
444
447
|
associatePhoneNumberContactFlow(args: AssociatePhoneNumberContactFlowCommandInput, cb: (err: any, data?: AssociatePhoneNumberContactFlowCommandOutput) => void): void;
|
|
445
448
|
associatePhoneNumberContactFlow(args: AssociatePhoneNumberContactFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociatePhoneNumberContactFlowCommandOutput) => void): void;
|
|
449
|
+
/**
|
|
450
|
+
* @see {@link AssociateQueueEmailAddressesCommand}
|
|
451
|
+
*/
|
|
452
|
+
associateQueueEmailAddresses(args: AssociateQueueEmailAddressesCommandInput, options?: __HttpHandlerOptions): Promise<AssociateQueueEmailAddressesCommandOutput>;
|
|
453
|
+
associateQueueEmailAddresses(args: AssociateQueueEmailAddressesCommandInput, cb: (err: any, data?: AssociateQueueEmailAddressesCommandOutput) => void): void;
|
|
454
|
+
associateQueueEmailAddresses(args: AssociateQueueEmailAddressesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateQueueEmailAddressesCommandOutput) => void): void;
|
|
446
455
|
/**
|
|
447
456
|
* @see {@link AssociateQueueQuickConnectsCommand}
|
|
448
457
|
*/
|
|
@@ -1253,6 +1262,12 @@ export interface Connect {
|
|
|
1253
1262
|
disassociatePhoneNumberContactFlow(args: DisassociatePhoneNumberContactFlowCommandInput, options?: __HttpHandlerOptions): Promise<DisassociatePhoneNumberContactFlowCommandOutput>;
|
|
1254
1263
|
disassociatePhoneNumberContactFlow(args: DisassociatePhoneNumberContactFlowCommandInput, cb: (err: any, data?: DisassociatePhoneNumberContactFlowCommandOutput) => void): void;
|
|
1255
1264
|
disassociatePhoneNumberContactFlow(args: DisassociatePhoneNumberContactFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociatePhoneNumberContactFlowCommandOutput) => void): void;
|
|
1265
|
+
/**
|
|
1266
|
+
* @see {@link DisassociateQueueEmailAddressesCommand}
|
|
1267
|
+
*/
|
|
1268
|
+
disassociateQueueEmailAddresses(args: DisassociateQueueEmailAddressesCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateQueueEmailAddressesCommandOutput>;
|
|
1269
|
+
disassociateQueueEmailAddresses(args: DisassociateQueueEmailAddressesCommandInput, cb: (err: any, data?: DisassociateQueueEmailAddressesCommandOutput) => void): void;
|
|
1270
|
+
disassociateQueueEmailAddresses(args: DisassociateQueueEmailAddressesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateQueueEmailAddressesCommandOutput) => void): void;
|
|
1256
1271
|
/**
|
|
1257
1272
|
* @see {@link DisassociateQueueQuickConnectsCommand}
|
|
1258
1273
|
*/
|
|
@@ -1627,6 +1642,12 @@ export interface Connect {
|
|
|
1627
1642
|
listPrompts(args: ListPromptsCommandInput, options?: __HttpHandlerOptions): Promise<ListPromptsCommandOutput>;
|
|
1628
1643
|
listPrompts(args: ListPromptsCommandInput, cb: (err: any, data?: ListPromptsCommandOutput) => void): void;
|
|
1629
1644
|
listPrompts(args: ListPromptsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPromptsCommandOutput) => void): void;
|
|
1645
|
+
/**
|
|
1646
|
+
* @see {@link ListQueueEmailAddressesCommand}
|
|
1647
|
+
*/
|
|
1648
|
+
listQueueEmailAddresses(args: ListQueueEmailAddressesCommandInput, options?: __HttpHandlerOptions): Promise<ListQueueEmailAddressesCommandOutput>;
|
|
1649
|
+
listQueueEmailAddresses(args: ListQueueEmailAddressesCommandInput, cb: (err: any, data?: ListQueueEmailAddressesCommandOutput) => void): void;
|
|
1650
|
+
listQueueEmailAddresses(args: ListQueueEmailAddressesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListQueueEmailAddressesCommandOutput) => void): void;
|
|
1630
1651
|
/**
|
|
1631
1652
|
* @see {@link ListQueueQuickConnectsCommand}
|
|
1632
1653
|
*/
|
|
@@ -20,6 +20,7 @@ import { AssociateInstanceStorageConfigCommandInput, AssociateInstanceStorageCon
|
|
|
20
20
|
import { AssociateLambdaFunctionCommandInput, AssociateLambdaFunctionCommandOutput } from "./commands/AssociateLambdaFunctionCommand";
|
|
21
21
|
import { AssociateLexBotCommandInput, AssociateLexBotCommandOutput } from "./commands/AssociateLexBotCommand";
|
|
22
22
|
import { AssociatePhoneNumberContactFlowCommandInput, AssociatePhoneNumberContactFlowCommandOutput } from "./commands/AssociatePhoneNumberContactFlowCommand";
|
|
23
|
+
import { AssociateQueueEmailAddressesCommandInput, AssociateQueueEmailAddressesCommandOutput } from "./commands/AssociateQueueEmailAddressesCommand";
|
|
23
24
|
import { AssociateQueueQuickConnectsCommandInput, AssociateQueueQuickConnectsCommandOutput } from "./commands/AssociateQueueQuickConnectsCommand";
|
|
24
25
|
import { AssociateRoutingProfileQueuesCommandInput, AssociateRoutingProfileQueuesCommandOutput } from "./commands/AssociateRoutingProfileQueuesCommand";
|
|
25
26
|
import { AssociateSecurityKeyCommandInput, AssociateSecurityKeyCommandOutput } from "./commands/AssociateSecurityKeyCommand";
|
|
@@ -155,6 +156,7 @@ import { DisassociateInstanceStorageConfigCommandInput, DisassociateInstanceStor
|
|
|
155
156
|
import { DisassociateLambdaFunctionCommandInput, DisassociateLambdaFunctionCommandOutput } from "./commands/DisassociateLambdaFunctionCommand";
|
|
156
157
|
import { DisassociateLexBotCommandInput, DisassociateLexBotCommandOutput } from "./commands/DisassociateLexBotCommand";
|
|
157
158
|
import { DisassociatePhoneNumberContactFlowCommandInput, DisassociatePhoneNumberContactFlowCommandOutput } from "./commands/DisassociatePhoneNumberContactFlowCommand";
|
|
159
|
+
import { DisassociateQueueEmailAddressesCommandInput, DisassociateQueueEmailAddressesCommandOutput } from "./commands/DisassociateQueueEmailAddressesCommand";
|
|
158
160
|
import { DisassociateQueueQuickConnectsCommandInput, DisassociateQueueQuickConnectsCommandOutput } from "./commands/DisassociateQueueQuickConnectsCommand";
|
|
159
161
|
import { DisassociateRoutingProfileQueuesCommandInput, DisassociateRoutingProfileQueuesCommandOutput } from "./commands/DisassociateRoutingProfileQueuesCommand";
|
|
160
162
|
import { DisassociateSecurityKeyCommandInput, DisassociateSecurityKeyCommandOutput } from "./commands/DisassociateSecurityKeyCommand";
|
|
@@ -217,6 +219,7 @@ import { ListPhoneNumbersCommandInput, ListPhoneNumbersCommandOutput } from "./c
|
|
|
217
219
|
import { ListPhoneNumbersV2CommandInput, ListPhoneNumbersV2CommandOutput } from "./commands/ListPhoneNumbersV2Command";
|
|
218
220
|
import { ListPredefinedAttributesCommandInput, ListPredefinedAttributesCommandOutput } from "./commands/ListPredefinedAttributesCommand";
|
|
219
221
|
import { ListPromptsCommandInput, ListPromptsCommandOutput } from "./commands/ListPromptsCommand";
|
|
222
|
+
import { ListQueueEmailAddressesCommandInput, ListQueueEmailAddressesCommandOutput } from "./commands/ListQueueEmailAddressesCommand";
|
|
220
223
|
import { ListQueueQuickConnectsCommandInput, ListQueueQuickConnectsCommandOutput } from "./commands/ListQueueQuickConnectsCommand";
|
|
221
224
|
import { ListQueuesCommandInput, ListQueuesCommandOutput } from "./commands/ListQueuesCommand";
|
|
222
225
|
import { ListQuickConnectsCommandInput, ListQuickConnectsCommandOutput } from "./commands/ListQuickConnectsCommand";
|
|
@@ -377,11 +380,11 @@ export { __Client };
|
|
|
377
380
|
/**
|
|
378
381
|
* @public
|
|
379
382
|
*/
|
|
380
|
-
export type ServiceInputTypes = ActivateEvaluationFormCommandInput | AssociateAnalyticsDataSetCommandInput | AssociateApprovedOriginCommandInput | AssociateBotCommandInput | AssociateContactWithUserCommandInput | AssociateDefaultVocabularyCommandInput | AssociateEmailAddressAliasCommandInput | AssociateFlowCommandInput | AssociateHoursOfOperationsCommandInput | AssociateInstanceStorageConfigCommandInput | AssociateLambdaFunctionCommandInput | AssociateLexBotCommandInput | AssociatePhoneNumberContactFlowCommandInput | AssociateQueueQuickConnectsCommandInput | AssociateRoutingProfileQueuesCommandInput | AssociateSecurityKeyCommandInput | AssociateSecurityProfilesCommandInput | AssociateTrafficDistributionGroupUserCommandInput | AssociateUserProficienciesCommandInput | AssociateWorkspaceCommandInput | BatchAssociateAnalyticsDataSetCommandInput | BatchCreateDataTableValueCommandInput | BatchDeleteDataTableValueCommandInput | BatchDescribeDataTableValueCommandInput | BatchDisassociateAnalyticsDataSetCommandInput | BatchGetAttachedFileMetadataCommandInput | BatchGetFlowAssociationCommandInput | BatchPutContactCommandInput | BatchUpdateDataTableValueCommandInput | ClaimPhoneNumberCommandInput | CompleteAttachedFileUploadCommandInput | CreateAgentStatusCommandInput | CreateContactCommandInput | CreateContactFlowCommandInput | CreateContactFlowModuleAliasCommandInput | CreateContactFlowModuleCommandInput | CreateContactFlowModuleVersionCommandInput | CreateContactFlowVersionCommandInput | CreateDataTableAttributeCommandInput | CreateDataTableCommandInput | CreateEmailAddressCommandInput | CreateEvaluationFormCommandInput | CreateHoursOfOperationCommandInput | CreateHoursOfOperationOverrideCommandInput | CreateInstanceCommandInput | CreateIntegrationAssociationCommandInput | CreateNotificationCommandInput | CreateParticipantCommandInput | CreatePersistentContactAssociationCommandInput | CreatePredefinedAttributeCommandInput | CreatePromptCommandInput | CreatePushNotificationRegistrationCommandInput | CreateQueueCommandInput | CreateQuickConnectCommandInput | CreateRoutingProfileCommandInput | CreateRuleCommandInput | CreateSecurityProfileCommandInput | CreateTaskTemplateCommandInput | CreateTestCaseCommandInput | CreateTrafficDistributionGroupCommandInput | CreateUseCaseCommandInput | CreateUserCommandInput | CreateUserHierarchyGroupCommandInput | CreateViewCommandInput | CreateViewVersionCommandInput | CreateVocabularyCommandInput | CreateWorkspaceCommandInput | CreateWorkspacePageCommandInput | DeactivateEvaluationFormCommandInput | DeleteAttachedFileCommandInput | DeleteContactEvaluationCommandInput | DeleteContactFlowCommandInput | DeleteContactFlowModuleAliasCommandInput | DeleteContactFlowModuleCommandInput | DeleteContactFlowModuleVersionCommandInput | DeleteContactFlowVersionCommandInput | DeleteDataTableAttributeCommandInput | DeleteDataTableCommandInput | DeleteEmailAddressCommandInput | DeleteEvaluationFormCommandInput | DeleteHoursOfOperationCommandInput | DeleteHoursOfOperationOverrideCommandInput | DeleteInstanceCommandInput | DeleteIntegrationAssociationCommandInput | DeleteNotificationCommandInput | DeletePredefinedAttributeCommandInput | DeletePromptCommandInput | DeletePushNotificationRegistrationCommandInput | DeleteQueueCommandInput | DeleteQuickConnectCommandInput | DeleteRoutingProfileCommandInput | DeleteRuleCommandInput | DeleteSecurityProfileCommandInput | DeleteTaskTemplateCommandInput | DeleteTestCaseCommandInput | DeleteTrafficDistributionGroupCommandInput | DeleteUseCaseCommandInput | DeleteUserCommandInput | DeleteUserHierarchyGroupCommandInput | DeleteViewCommandInput | DeleteViewVersionCommandInput | DeleteVocabularyCommandInput | DeleteWorkspaceCommandInput | DeleteWorkspaceMediaCommandInput | DeleteWorkspacePageCommandInput | DescribeAgentStatusCommandInput | DescribeAuthenticationProfileCommandInput | DescribeContactCommandInput | DescribeContactEvaluationCommandInput | DescribeContactFlowCommandInput | DescribeContactFlowModuleAliasCommandInput | DescribeContactFlowModuleCommandInput | DescribeDataTableAttributeCommandInput | DescribeDataTableCommandInput | DescribeEmailAddressCommandInput | DescribeEvaluationFormCommandInput | DescribeHoursOfOperationCommandInput | DescribeHoursOfOperationOverrideCommandInput | DescribeInstanceAttributeCommandInput | DescribeInstanceCommandInput | DescribeInstanceStorageConfigCommandInput | DescribeNotificationCommandInput | DescribePhoneNumberCommandInput | DescribePredefinedAttributeCommandInput | DescribePromptCommandInput | DescribeQueueCommandInput | DescribeQuickConnectCommandInput | DescribeRoutingProfileCommandInput | DescribeRuleCommandInput | DescribeSecurityProfileCommandInput | DescribeTestCaseCommandInput | DescribeTrafficDistributionGroupCommandInput | DescribeUserCommandInput | DescribeUserHierarchyGroupCommandInput | DescribeUserHierarchyStructureCommandInput | DescribeViewCommandInput | DescribeVocabularyCommandInput | DescribeWorkspaceCommandInput | DisassociateAnalyticsDataSetCommandInput | DisassociateApprovedOriginCommandInput | DisassociateBotCommandInput | DisassociateEmailAddressAliasCommandInput | DisassociateFlowCommandInput | DisassociateHoursOfOperationsCommandInput | DisassociateInstanceStorageConfigCommandInput | DisassociateLambdaFunctionCommandInput | DisassociateLexBotCommandInput | DisassociatePhoneNumberContactFlowCommandInput | DisassociateQueueQuickConnectsCommandInput | DisassociateRoutingProfileQueuesCommandInput | DisassociateSecurityKeyCommandInput | DisassociateSecurityProfilesCommandInput | DisassociateTrafficDistributionGroupUserCommandInput | DisassociateUserProficienciesCommandInput | DisassociateWorkspaceCommandInput | DismissUserContactCommandInput | EvaluateDataTableValuesCommandInput | GetAttachedFileCommandInput | GetContactAttributesCommandInput | GetContactMetricsCommandInput | GetCurrentMetricDataCommandInput | GetCurrentUserDataCommandInput | GetEffectiveHoursOfOperationsCommandInput | GetFederationTokenCommandInput | GetFlowAssociationCommandInput | GetMetricDataCommandInput | GetMetricDataV2CommandInput | GetPromptFileCommandInput | GetTaskTemplateCommandInput | GetTestCaseExecutionSummaryCommandInput | GetTrafficDistributionCommandInput | ImportPhoneNumberCommandInput | ImportWorkspaceMediaCommandInput | ListAgentStatusesCommandInput | ListAnalyticsDataAssociationsCommandInput | ListAnalyticsDataLakeDataSetsCommandInput | ListApprovedOriginsCommandInput | ListAssociatedContactsCommandInput | ListAuthenticationProfilesCommandInput | ListBotsCommandInput | ListChildHoursOfOperationsCommandInput | ListContactEvaluationsCommandInput | ListContactFlowModuleAliasesCommandInput | ListContactFlowModuleVersionsCommandInput | ListContactFlowModulesCommandInput | ListContactFlowVersionsCommandInput | ListContactFlowsCommandInput | ListContactReferencesCommandInput | ListDataTableAttributesCommandInput | ListDataTablePrimaryValuesCommandInput | ListDataTableValuesCommandInput | ListDataTablesCommandInput | ListDefaultVocabulariesCommandInput | ListEntitySecurityProfilesCommandInput | ListEvaluationFormVersionsCommandInput | ListEvaluationFormsCommandInput | ListFlowAssociationsCommandInput | ListHoursOfOperationOverridesCommandInput | ListHoursOfOperationsCommandInput | ListInstanceAttributesCommandInput | ListInstanceStorageConfigsCommandInput | ListInstancesCommandInput | ListIntegrationAssociationsCommandInput | ListLambdaFunctionsCommandInput | ListLexBotsCommandInput | ListNotificationsCommandInput | ListPhoneNumbersCommandInput | ListPhoneNumbersV2CommandInput | ListPredefinedAttributesCommandInput | ListPromptsCommandInput | ListQueueQuickConnectsCommandInput | ListQueuesCommandInput | ListQuickConnectsCommandInput | ListRealtimeContactAnalysisSegmentsV2CommandInput | ListRoutingProfileManualAssignmentQueuesCommandInput | ListRoutingProfileQueuesCommandInput | ListRoutingProfilesCommandInput | ListRulesCommandInput | ListSecurityKeysCommandInput | ListSecurityProfileApplicationsCommandInput | ListSecurityProfileFlowModulesCommandInput | ListSecurityProfilePermissionsCommandInput | ListSecurityProfilesCommandInput | ListTagsForResourceCommandInput | ListTaskTemplatesCommandInput | ListTestCaseExecutionRecordsCommandInput | ListTestCaseExecutionsCommandInput | ListTestCasesCommandInput | ListTrafficDistributionGroupUsersCommandInput | ListTrafficDistributionGroupsCommandInput | ListUseCasesCommandInput | ListUserHierarchyGroupsCommandInput | ListUserNotificationsCommandInput | ListUserProficienciesCommandInput | ListUsersCommandInput | ListViewVersionsCommandInput | ListViewsCommandInput | ListWorkspaceMediaCommandInput | ListWorkspacePagesCommandInput | ListWorkspacesCommandInput | MonitorContactCommandInput | PauseContactCommandInput | PutUserStatusCommandInput | ReleasePhoneNumberCommandInput | ReplicateInstanceCommandInput | ResumeContactCommandInput | ResumeContactRecordingCommandInput | SearchAgentStatusesCommandInput | SearchAvailablePhoneNumbersCommandInput | SearchContactEvaluationsCommandInput | SearchContactFlowModulesCommandInput | SearchContactFlowsCommandInput | SearchContactsCommandInput | SearchDataTablesCommandInput | SearchEmailAddressesCommandInput | SearchEvaluationFormsCommandInput | SearchHoursOfOperationOverridesCommandInput | SearchHoursOfOperationsCommandInput | SearchNotificationsCommandInput | SearchPredefinedAttributesCommandInput | SearchPromptsCommandInput | SearchQueuesCommandInput | SearchQuickConnectsCommandInput | SearchResourceTagsCommandInput | SearchRoutingProfilesCommandInput | SearchSecurityProfilesCommandInput | SearchTestCasesCommandInput | SearchUserHierarchyGroupsCommandInput | SearchUsersCommandInput | SearchViewsCommandInput | SearchVocabulariesCommandInput | SearchWorkspaceAssociationsCommandInput | SearchWorkspacesCommandInput | SendChatIntegrationEventCommandInput | SendOutboundEmailCommandInput | StartAttachedFileUploadCommandInput | StartChatContactCommandInput | StartContactEvaluationCommandInput | StartContactMediaProcessingCommandInput | StartContactRecordingCommandInput | StartContactStreamingCommandInput | StartEmailContactCommandInput | StartOutboundChatContactCommandInput | StartOutboundEmailContactCommandInput | StartOutboundVoiceContactCommandInput | StartScreenSharingCommandInput | StartTaskContactCommandInput | StartTestCaseExecutionCommandInput | StartWebRTCContactCommandInput | StopContactCommandInput | StopContactMediaProcessingCommandInput | StopContactRecordingCommandInput | StopContactStreamingCommandInput | StopTestCaseExecutionCommandInput | SubmitContactEvaluationCommandInput | SuspendContactRecordingCommandInput | TagContactCommandInput | TagResourceCommandInput | TransferContactCommandInput | UntagContactCommandInput | UntagResourceCommandInput | UpdateAgentStatusCommandInput | UpdateAuthenticationProfileCommandInput | UpdateContactAttributesCommandInput | UpdateContactCommandInput | UpdateContactEvaluationCommandInput | UpdateContactFlowContentCommandInput | UpdateContactFlowMetadataCommandInput | UpdateContactFlowModuleAliasCommandInput | UpdateContactFlowModuleContentCommandInput | UpdateContactFlowModuleMetadataCommandInput | UpdateContactFlowNameCommandInput | UpdateContactRoutingDataCommandInput | UpdateContactScheduleCommandInput | UpdateDataTableAttributeCommandInput | UpdateDataTableMetadataCommandInput | UpdateDataTablePrimaryValuesCommandInput | UpdateEmailAddressMetadataCommandInput | UpdateEvaluationFormCommandInput | UpdateHoursOfOperationCommandInput | UpdateHoursOfOperationOverrideCommandInput | UpdateInstanceAttributeCommandInput | UpdateInstanceStorageConfigCommandInput | UpdateNotificationContentCommandInput | UpdateParticipantAuthenticationCommandInput | UpdateParticipantRoleConfigCommandInput | UpdatePhoneNumberCommandInput | UpdatePhoneNumberMetadataCommandInput | UpdatePredefinedAttributeCommandInput | UpdatePromptCommandInput | UpdateQueueHoursOfOperationCommandInput | UpdateQueueMaxContactsCommandInput | UpdateQueueNameCommandInput | UpdateQueueOutboundCallerConfigCommandInput | UpdateQueueOutboundEmailConfigCommandInput | UpdateQueueStatusCommandInput | UpdateQuickConnectConfigCommandInput | UpdateQuickConnectNameCommandInput | UpdateRoutingProfileAgentAvailabilityTimerCommandInput | UpdateRoutingProfileConcurrencyCommandInput | UpdateRoutingProfileDefaultOutboundQueueCommandInput | UpdateRoutingProfileNameCommandInput | UpdateRoutingProfileQueuesCommandInput | UpdateRuleCommandInput | UpdateSecurityProfileCommandInput | UpdateTaskTemplateCommandInput | UpdateTestCaseCommandInput | UpdateTrafficDistributionCommandInput | UpdateUserConfigCommandInput | UpdateUserHierarchyCommandInput | UpdateUserHierarchyGroupNameCommandInput | UpdateUserHierarchyStructureCommandInput | UpdateUserIdentityInfoCommandInput | UpdateUserNotificationStatusCommandInput | UpdateUserPhoneConfigCommandInput | UpdateUserProficienciesCommandInput | UpdateUserRoutingProfileCommandInput | UpdateUserSecurityProfilesCommandInput | UpdateViewContentCommandInput | UpdateViewMetadataCommandInput | UpdateWorkspaceMetadataCommandInput | UpdateWorkspacePageCommandInput | UpdateWorkspaceThemeCommandInput | UpdateWorkspaceVisibilityCommandInput;
|
|
383
|
+
export type ServiceInputTypes = ActivateEvaluationFormCommandInput | AssociateAnalyticsDataSetCommandInput | AssociateApprovedOriginCommandInput | AssociateBotCommandInput | AssociateContactWithUserCommandInput | AssociateDefaultVocabularyCommandInput | AssociateEmailAddressAliasCommandInput | AssociateFlowCommandInput | AssociateHoursOfOperationsCommandInput | AssociateInstanceStorageConfigCommandInput | AssociateLambdaFunctionCommandInput | AssociateLexBotCommandInput | AssociatePhoneNumberContactFlowCommandInput | AssociateQueueEmailAddressesCommandInput | AssociateQueueQuickConnectsCommandInput | AssociateRoutingProfileQueuesCommandInput | AssociateSecurityKeyCommandInput | AssociateSecurityProfilesCommandInput | AssociateTrafficDistributionGroupUserCommandInput | AssociateUserProficienciesCommandInput | AssociateWorkspaceCommandInput | BatchAssociateAnalyticsDataSetCommandInput | BatchCreateDataTableValueCommandInput | BatchDeleteDataTableValueCommandInput | BatchDescribeDataTableValueCommandInput | BatchDisassociateAnalyticsDataSetCommandInput | BatchGetAttachedFileMetadataCommandInput | BatchGetFlowAssociationCommandInput | BatchPutContactCommandInput | BatchUpdateDataTableValueCommandInput | ClaimPhoneNumberCommandInput | CompleteAttachedFileUploadCommandInput | CreateAgentStatusCommandInput | CreateContactCommandInput | CreateContactFlowCommandInput | CreateContactFlowModuleAliasCommandInput | CreateContactFlowModuleCommandInput | CreateContactFlowModuleVersionCommandInput | CreateContactFlowVersionCommandInput | CreateDataTableAttributeCommandInput | CreateDataTableCommandInput | CreateEmailAddressCommandInput | CreateEvaluationFormCommandInput | CreateHoursOfOperationCommandInput | CreateHoursOfOperationOverrideCommandInput | CreateInstanceCommandInput | CreateIntegrationAssociationCommandInput | CreateNotificationCommandInput | CreateParticipantCommandInput | CreatePersistentContactAssociationCommandInput | CreatePredefinedAttributeCommandInput | CreatePromptCommandInput | CreatePushNotificationRegistrationCommandInput | CreateQueueCommandInput | CreateQuickConnectCommandInput | CreateRoutingProfileCommandInput | CreateRuleCommandInput | CreateSecurityProfileCommandInput | CreateTaskTemplateCommandInput | CreateTestCaseCommandInput | CreateTrafficDistributionGroupCommandInput | CreateUseCaseCommandInput | CreateUserCommandInput | CreateUserHierarchyGroupCommandInput | CreateViewCommandInput | CreateViewVersionCommandInput | CreateVocabularyCommandInput | CreateWorkspaceCommandInput | CreateWorkspacePageCommandInput | DeactivateEvaluationFormCommandInput | DeleteAttachedFileCommandInput | DeleteContactEvaluationCommandInput | DeleteContactFlowCommandInput | DeleteContactFlowModuleAliasCommandInput | DeleteContactFlowModuleCommandInput | DeleteContactFlowModuleVersionCommandInput | DeleteContactFlowVersionCommandInput | DeleteDataTableAttributeCommandInput | DeleteDataTableCommandInput | DeleteEmailAddressCommandInput | DeleteEvaluationFormCommandInput | DeleteHoursOfOperationCommandInput | DeleteHoursOfOperationOverrideCommandInput | DeleteInstanceCommandInput | DeleteIntegrationAssociationCommandInput | DeleteNotificationCommandInput | DeletePredefinedAttributeCommandInput | DeletePromptCommandInput | DeletePushNotificationRegistrationCommandInput | DeleteQueueCommandInput | DeleteQuickConnectCommandInput | DeleteRoutingProfileCommandInput | DeleteRuleCommandInput | DeleteSecurityProfileCommandInput | DeleteTaskTemplateCommandInput | DeleteTestCaseCommandInput | DeleteTrafficDistributionGroupCommandInput | DeleteUseCaseCommandInput | DeleteUserCommandInput | DeleteUserHierarchyGroupCommandInput | DeleteViewCommandInput | DeleteViewVersionCommandInput | DeleteVocabularyCommandInput | DeleteWorkspaceCommandInput | DeleteWorkspaceMediaCommandInput | DeleteWorkspacePageCommandInput | DescribeAgentStatusCommandInput | DescribeAuthenticationProfileCommandInput | DescribeContactCommandInput | DescribeContactEvaluationCommandInput | DescribeContactFlowCommandInput | DescribeContactFlowModuleAliasCommandInput | DescribeContactFlowModuleCommandInput | DescribeDataTableAttributeCommandInput | DescribeDataTableCommandInput | DescribeEmailAddressCommandInput | DescribeEvaluationFormCommandInput | DescribeHoursOfOperationCommandInput | DescribeHoursOfOperationOverrideCommandInput | DescribeInstanceAttributeCommandInput | DescribeInstanceCommandInput | DescribeInstanceStorageConfigCommandInput | DescribeNotificationCommandInput | DescribePhoneNumberCommandInput | DescribePredefinedAttributeCommandInput | DescribePromptCommandInput | DescribeQueueCommandInput | DescribeQuickConnectCommandInput | DescribeRoutingProfileCommandInput | DescribeRuleCommandInput | DescribeSecurityProfileCommandInput | DescribeTestCaseCommandInput | DescribeTrafficDistributionGroupCommandInput | DescribeUserCommandInput | DescribeUserHierarchyGroupCommandInput | DescribeUserHierarchyStructureCommandInput | DescribeViewCommandInput | DescribeVocabularyCommandInput | DescribeWorkspaceCommandInput | DisassociateAnalyticsDataSetCommandInput | DisassociateApprovedOriginCommandInput | DisassociateBotCommandInput | DisassociateEmailAddressAliasCommandInput | DisassociateFlowCommandInput | DisassociateHoursOfOperationsCommandInput | DisassociateInstanceStorageConfigCommandInput | DisassociateLambdaFunctionCommandInput | DisassociateLexBotCommandInput | DisassociatePhoneNumberContactFlowCommandInput | DisassociateQueueEmailAddressesCommandInput | DisassociateQueueQuickConnectsCommandInput | DisassociateRoutingProfileQueuesCommandInput | DisassociateSecurityKeyCommandInput | DisassociateSecurityProfilesCommandInput | DisassociateTrafficDistributionGroupUserCommandInput | DisassociateUserProficienciesCommandInput | DisassociateWorkspaceCommandInput | DismissUserContactCommandInput | EvaluateDataTableValuesCommandInput | GetAttachedFileCommandInput | GetContactAttributesCommandInput | GetContactMetricsCommandInput | GetCurrentMetricDataCommandInput | GetCurrentUserDataCommandInput | GetEffectiveHoursOfOperationsCommandInput | GetFederationTokenCommandInput | GetFlowAssociationCommandInput | GetMetricDataCommandInput | GetMetricDataV2CommandInput | GetPromptFileCommandInput | GetTaskTemplateCommandInput | GetTestCaseExecutionSummaryCommandInput | GetTrafficDistributionCommandInput | ImportPhoneNumberCommandInput | ImportWorkspaceMediaCommandInput | ListAgentStatusesCommandInput | ListAnalyticsDataAssociationsCommandInput | ListAnalyticsDataLakeDataSetsCommandInput | ListApprovedOriginsCommandInput | ListAssociatedContactsCommandInput | ListAuthenticationProfilesCommandInput | ListBotsCommandInput | ListChildHoursOfOperationsCommandInput | ListContactEvaluationsCommandInput | ListContactFlowModuleAliasesCommandInput | ListContactFlowModuleVersionsCommandInput | ListContactFlowModulesCommandInput | ListContactFlowVersionsCommandInput | ListContactFlowsCommandInput | ListContactReferencesCommandInput | ListDataTableAttributesCommandInput | ListDataTablePrimaryValuesCommandInput | ListDataTableValuesCommandInput | ListDataTablesCommandInput | ListDefaultVocabulariesCommandInput | ListEntitySecurityProfilesCommandInput | ListEvaluationFormVersionsCommandInput | ListEvaluationFormsCommandInput | ListFlowAssociationsCommandInput | ListHoursOfOperationOverridesCommandInput | ListHoursOfOperationsCommandInput | ListInstanceAttributesCommandInput | ListInstanceStorageConfigsCommandInput | ListInstancesCommandInput | ListIntegrationAssociationsCommandInput | ListLambdaFunctionsCommandInput | ListLexBotsCommandInput | ListNotificationsCommandInput | ListPhoneNumbersCommandInput | ListPhoneNumbersV2CommandInput | ListPredefinedAttributesCommandInput | ListPromptsCommandInput | ListQueueEmailAddressesCommandInput | ListQueueQuickConnectsCommandInput | ListQueuesCommandInput | ListQuickConnectsCommandInput | ListRealtimeContactAnalysisSegmentsV2CommandInput | ListRoutingProfileManualAssignmentQueuesCommandInput | ListRoutingProfileQueuesCommandInput | ListRoutingProfilesCommandInput | ListRulesCommandInput | ListSecurityKeysCommandInput | ListSecurityProfileApplicationsCommandInput | ListSecurityProfileFlowModulesCommandInput | ListSecurityProfilePermissionsCommandInput | ListSecurityProfilesCommandInput | ListTagsForResourceCommandInput | ListTaskTemplatesCommandInput | ListTestCaseExecutionRecordsCommandInput | ListTestCaseExecutionsCommandInput | ListTestCasesCommandInput | ListTrafficDistributionGroupUsersCommandInput | ListTrafficDistributionGroupsCommandInput | ListUseCasesCommandInput | ListUserHierarchyGroupsCommandInput | ListUserNotificationsCommandInput | ListUserProficienciesCommandInput | ListUsersCommandInput | ListViewVersionsCommandInput | ListViewsCommandInput | ListWorkspaceMediaCommandInput | ListWorkspacePagesCommandInput | ListWorkspacesCommandInput | MonitorContactCommandInput | PauseContactCommandInput | PutUserStatusCommandInput | ReleasePhoneNumberCommandInput | ReplicateInstanceCommandInput | ResumeContactCommandInput | ResumeContactRecordingCommandInput | SearchAgentStatusesCommandInput | SearchAvailablePhoneNumbersCommandInput | SearchContactEvaluationsCommandInput | SearchContactFlowModulesCommandInput | SearchContactFlowsCommandInput | SearchContactsCommandInput | SearchDataTablesCommandInput | SearchEmailAddressesCommandInput | SearchEvaluationFormsCommandInput | SearchHoursOfOperationOverridesCommandInput | SearchHoursOfOperationsCommandInput | SearchNotificationsCommandInput | SearchPredefinedAttributesCommandInput | SearchPromptsCommandInput | SearchQueuesCommandInput | SearchQuickConnectsCommandInput | SearchResourceTagsCommandInput | SearchRoutingProfilesCommandInput | SearchSecurityProfilesCommandInput | SearchTestCasesCommandInput | SearchUserHierarchyGroupsCommandInput | SearchUsersCommandInput | SearchViewsCommandInput | SearchVocabulariesCommandInput | SearchWorkspaceAssociationsCommandInput | SearchWorkspacesCommandInput | SendChatIntegrationEventCommandInput | SendOutboundEmailCommandInput | StartAttachedFileUploadCommandInput | StartChatContactCommandInput | StartContactEvaluationCommandInput | StartContactMediaProcessingCommandInput | StartContactRecordingCommandInput | StartContactStreamingCommandInput | StartEmailContactCommandInput | StartOutboundChatContactCommandInput | StartOutboundEmailContactCommandInput | StartOutboundVoiceContactCommandInput | StartScreenSharingCommandInput | StartTaskContactCommandInput | StartTestCaseExecutionCommandInput | StartWebRTCContactCommandInput | StopContactCommandInput | StopContactMediaProcessingCommandInput | StopContactRecordingCommandInput | StopContactStreamingCommandInput | StopTestCaseExecutionCommandInput | SubmitContactEvaluationCommandInput | SuspendContactRecordingCommandInput | TagContactCommandInput | TagResourceCommandInput | TransferContactCommandInput | UntagContactCommandInput | UntagResourceCommandInput | UpdateAgentStatusCommandInput | UpdateAuthenticationProfileCommandInput | UpdateContactAttributesCommandInput | UpdateContactCommandInput | UpdateContactEvaluationCommandInput | UpdateContactFlowContentCommandInput | UpdateContactFlowMetadataCommandInput | UpdateContactFlowModuleAliasCommandInput | UpdateContactFlowModuleContentCommandInput | UpdateContactFlowModuleMetadataCommandInput | UpdateContactFlowNameCommandInput | UpdateContactRoutingDataCommandInput | UpdateContactScheduleCommandInput | UpdateDataTableAttributeCommandInput | UpdateDataTableMetadataCommandInput | UpdateDataTablePrimaryValuesCommandInput | UpdateEmailAddressMetadataCommandInput | UpdateEvaluationFormCommandInput | UpdateHoursOfOperationCommandInput | UpdateHoursOfOperationOverrideCommandInput | UpdateInstanceAttributeCommandInput | UpdateInstanceStorageConfigCommandInput | UpdateNotificationContentCommandInput | UpdateParticipantAuthenticationCommandInput | UpdateParticipantRoleConfigCommandInput | UpdatePhoneNumberCommandInput | UpdatePhoneNumberMetadataCommandInput | UpdatePredefinedAttributeCommandInput | UpdatePromptCommandInput | UpdateQueueHoursOfOperationCommandInput | UpdateQueueMaxContactsCommandInput | UpdateQueueNameCommandInput | UpdateQueueOutboundCallerConfigCommandInput | UpdateQueueOutboundEmailConfigCommandInput | UpdateQueueStatusCommandInput | UpdateQuickConnectConfigCommandInput | UpdateQuickConnectNameCommandInput | UpdateRoutingProfileAgentAvailabilityTimerCommandInput | UpdateRoutingProfileConcurrencyCommandInput | UpdateRoutingProfileDefaultOutboundQueueCommandInput | UpdateRoutingProfileNameCommandInput | UpdateRoutingProfileQueuesCommandInput | UpdateRuleCommandInput | UpdateSecurityProfileCommandInput | UpdateTaskTemplateCommandInput | UpdateTestCaseCommandInput | UpdateTrafficDistributionCommandInput | UpdateUserConfigCommandInput | UpdateUserHierarchyCommandInput | UpdateUserHierarchyGroupNameCommandInput | UpdateUserHierarchyStructureCommandInput | UpdateUserIdentityInfoCommandInput | UpdateUserNotificationStatusCommandInput | UpdateUserPhoneConfigCommandInput | UpdateUserProficienciesCommandInput | UpdateUserRoutingProfileCommandInput | UpdateUserSecurityProfilesCommandInput | UpdateViewContentCommandInput | UpdateViewMetadataCommandInput | UpdateWorkspaceMetadataCommandInput | UpdateWorkspacePageCommandInput | UpdateWorkspaceThemeCommandInput | UpdateWorkspaceVisibilityCommandInput;
|
|
381
384
|
/**
|
|
382
385
|
* @public
|
|
383
386
|
*/
|
|
384
|
-
export type ServiceOutputTypes = ActivateEvaluationFormCommandOutput | AssociateAnalyticsDataSetCommandOutput | AssociateApprovedOriginCommandOutput | AssociateBotCommandOutput | AssociateContactWithUserCommandOutput | AssociateDefaultVocabularyCommandOutput | AssociateEmailAddressAliasCommandOutput | AssociateFlowCommandOutput | AssociateHoursOfOperationsCommandOutput | AssociateInstanceStorageConfigCommandOutput | AssociateLambdaFunctionCommandOutput | AssociateLexBotCommandOutput | AssociatePhoneNumberContactFlowCommandOutput | AssociateQueueQuickConnectsCommandOutput | AssociateRoutingProfileQueuesCommandOutput | AssociateSecurityKeyCommandOutput | AssociateSecurityProfilesCommandOutput | AssociateTrafficDistributionGroupUserCommandOutput | AssociateUserProficienciesCommandOutput | AssociateWorkspaceCommandOutput | BatchAssociateAnalyticsDataSetCommandOutput | BatchCreateDataTableValueCommandOutput | BatchDeleteDataTableValueCommandOutput | BatchDescribeDataTableValueCommandOutput | BatchDisassociateAnalyticsDataSetCommandOutput | BatchGetAttachedFileMetadataCommandOutput | BatchGetFlowAssociationCommandOutput | BatchPutContactCommandOutput | BatchUpdateDataTableValueCommandOutput | ClaimPhoneNumberCommandOutput | CompleteAttachedFileUploadCommandOutput | CreateAgentStatusCommandOutput | CreateContactCommandOutput | CreateContactFlowCommandOutput | CreateContactFlowModuleAliasCommandOutput | CreateContactFlowModuleCommandOutput | CreateContactFlowModuleVersionCommandOutput | CreateContactFlowVersionCommandOutput | CreateDataTableAttributeCommandOutput | CreateDataTableCommandOutput | CreateEmailAddressCommandOutput | CreateEvaluationFormCommandOutput | CreateHoursOfOperationCommandOutput | CreateHoursOfOperationOverrideCommandOutput | CreateInstanceCommandOutput | CreateIntegrationAssociationCommandOutput | CreateNotificationCommandOutput | CreateParticipantCommandOutput | CreatePersistentContactAssociationCommandOutput | CreatePredefinedAttributeCommandOutput | CreatePromptCommandOutput | CreatePushNotificationRegistrationCommandOutput | CreateQueueCommandOutput | CreateQuickConnectCommandOutput | CreateRoutingProfileCommandOutput | CreateRuleCommandOutput | CreateSecurityProfileCommandOutput | CreateTaskTemplateCommandOutput | CreateTestCaseCommandOutput | CreateTrafficDistributionGroupCommandOutput | CreateUseCaseCommandOutput | CreateUserCommandOutput | CreateUserHierarchyGroupCommandOutput | CreateViewCommandOutput | CreateViewVersionCommandOutput | CreateVocabularyCommandOutput | CreateWorkspaceCommandOutput | CreateWorkspacePageCommandOutput | DeactivateEvaluationFormCommandOutput | DeleteAttachedFileCommandOutput | DeleteContactEvaluationCommandOutput | DeleteContactFlowCommandOutput | DeleteContactFlowModuleAliasCommandOutput | DeleteContactFlowModuleCommandOutput | DeleteContactFlowModuleVersionCommandOutput | DeleteContactFlowVersionCommandOutput | DeleteDataTableAttributeCommandOutput | DeleteDataTableCommandOutput | DeleteEmailAddressCommandOutput | DeleteEvaluationFormCommandOutput | DeleteHoursOfOperationCommandOutput | DeleteHoursOfOperationOverrideCommandOutput | DeleteInstanceCommandOutput | DeleteIntegrationAssociationCommandOutput | DeleteNotificationCommandOutput | DeletePredefinedAttributeCommandOutput | DeletePromptCommandOutput | DeletePushNotificationRegistrationCommandOutput | DeleteQueueCommandOutput | DeleteQuickConnectCommandOutput | DeleteRoutingProfileCommandOutput | DeleteRuleCommandOutput | DeleteSecurityProfileCommandOutput | DeleteTaskTemplateCommandOutput | DeleteTestCaseCommandOutput | DeleteTrafficDistributionGroupCommandOutput | DeleteUseCaseCommandOutput | DeleteUserCommandOutput | DeleteUserHierarchyGroupCommandOutput | DeleteViewCommandOutput | DeleteViewVersionCommandOutput | DeleteVocabularyCommandOutput | DeleteWorkspaceCommandOutput | DeleteWorkspaceMediaCommandOutput | DeleteWorkspacePageCommandOutput | DescribeAgentStatusCommandOutput | DescribeAuthenticationProfileCommandOutput | DescribeContactCommandOutput | DescribeContactEvaluationCommandOutput | DescribeContactFlowCommandOutput | DescribeContactFlowModuleAliasCommandOutput | DescribeContactFlowModuleCommandOutput | DescribeDataTableAttributeCommandOutput | DescribeDataTableCommandOutput | DescribeEmailAddressCommandOutput | DescribeEvaluationFormCommandOutput | DescribeHoursOfOperationCommandOutput | DescribeHoursOfOperationOverrideCommandOutput | DescribeInstanceAttributeCommandOutput | DescribeInstanceCommandOutput | DescribeInstanceStorageConfigCommandOutput | DescribeNotificationCommandOutput | DescribePhoneNumberCommandOutput | DescribePredefinedAttributeCommandOutput | DescribePromptCommandOutput | DescribeQueueCommandOutput | DescribeQuickConnectCommandOutput | DescribeRoutingProfileCommandOutput | DescribeRuleCommandOutput | DescribeSecurityProfileCommandOutput | DescribeTestCaseCommandOutput | DescribeTrafficDistributionGroupCommandOutput | DescribeUserCommandOutput | DescribeUserHierarchyGroupCommandOutput | DescribeUserHierarchyStructureCommandOutput | DescribeViewCommandOutput | DescribeVocabularyCommandOutput | DescribeWorkspaceCommandOutput | DisassociateAnalyticsDataSetCommandOutput | DisassociateApprovedOriginCommandOutput | DisassociateBotCommandOutput | DisassociateEmailAddressAliasCommandOutput | DisassociateFlowCommandOutput | DisassociateHoursOfOperationsCommandOutput | DisassociateInstanceStorageConfigCommandOutput | DisassociateLambdaFunctionCommandOutput | DisassociateLexBotCommandOutput | DisassociatePhoneNumberContactFlowCommandOutput | DisassociateQueueQuickConnectsCommandOutput | DisassociateRoutingProfileQueuesCommandOutput | DisassociateSecurityKeyCommandOutput | DisassociateSecurityProfilesCommandOutput | DisassociateTrafficDistributionGroupUserCommandOutput | DisassociateUserProficienciesCommandOutput | DisassociateWorkspaceCommandOutput | DismissUserContactCommandOutput | EvaluateDataTableValuesCommandOutput | GetAttachedFileCommandOutput | GetContactAttributesCommandOutput | GetContactMetricsCommandOutput | GetCurrentMetricDataCommandOutput | GetCurrentUserDataCommandOutput | GetEffectiveHoursOfOperationsCommandOutput | GetFederationTokenCommandOutput | GetFlowAssociationCommandOutput | GetMetricDataCommandOutput | GetMetricDataV2CommandOutput | GetPromptFileCommandOutput | GetTaskTemplateCommandOutput | GetTestCaseExecutionSummaryCommandOutput | GetTrafficDistributionCommandOutput | ImportPhoneNumberCommandOutput | ImportWorkspaceMediaCommandOutput | ListAgentStatusesCommandOutput | ListAnalyticsDataAssociationsCommandOutput | ListAnalyticsDataLakeDataSetsCommandOutput | ListApprovedOriginsCommandOutput | ListAssociatedContactsCommandOutput | ListAuthenticationProfilesCommandOutput | ListBotsCommandOutput | ListChildHoursOfOperationsCommandOutput | ListContactEvaluationsCommandOutput | ListContactFlowModuleAliasesCommandOutput | ListContactFlowModuleVersionsCommandOutput | ListContactFlowModulesCommandOutput | ListContactFlowVersionsCommandOutput | ListContactFlowsCommandOutput | ListContactReferencesCommandOutput | ListDataTableAttributesCommandOutput | ListDataTablePrimaryValuesCommandOutput | ListDataTableValuesCommandOutput | ListDataTablesCommandOutput | ListDefaultVocabulariesCommandOutput | ListEntitySecurityProfilesCommandOutput | ListEvaluationFormVersionsCommandOutput | ListEvaluationFormsCommandOutput | ListFlowAssociationsCommandOutput | ListHoursOfOperationOverridesCommandOutput | ListHoursOfOperationsCommandOutput | ListInstanceAttributesCommandOutput | ListInstanceStorageConfigsCommandOutput | ListInstancesCommandOutput | ListIntegrationAssociationsCommandOutput | ListLambdaFunctionsCommandOutput | ListLexBotsCommandOutput | ListNotificationsCommandOutput | ListPhoneNumbersCommandOutput | ListPhoneNumbersV2CommandOutput | ListPredefinedAttributesCommandOutput | ListPromptsCommandOutput | ListQueueQuickConnectsCommandOutput | ListQueuesCommandOutput | ListQuickConnectsCommandOutput | ListRealtimeContactAnalysisSegmentsV2CommandOutput | ListRoutingProfileManualAssignmentQueuesCommandOutput | ListRoutingProfileQueuesCommandOutput | ListRoutingProfilesCommandOutput | ListRulesCommandOutput | ListSecurityKeysCommandOutput | ListSecurityProfileApplicationsCommandOutput | ListSecurityProfileFlowModulesCommandOutput | ListSecurityProfilePermissionsCommandOutput | ListSecurityProfilesCommandOutput | ListTagsForResourceCommandOutput | ListTaskTemplatesCommandOutput | ListTestCaseExecutionRecordsCommandOutput | ListTestCaseExecutionsCommandOutput | ListTestCasesCommandOutput | ListTrafficDistributionGroupUsersCommandOutput | ListTrafficDistributionGroupsCommandOutput | ListUseCasesCommandOutput | ListUserHierarchyGroupsCommandOutput | ListUserNotificationsCommandOutput | ListUserProficienciesCommandOutput | ListUsersCommandOutput | ListViewVersionsCommandOutput | ListViewsCommandOutput | ListWorkspaceMediaCommandOutput | ListWorkspacePagesCommandOutput | ListWorkspacesCommandOutput | MonitorContactCommandOutput | PauseContactCommandOutput | PutUserStatusCommandOutput | ReleasePhoneNumberCommandOutput | ReplicateInstanceCommandOutput | ResumeContactCommandOutput | ResumeContactRecordingCommandOutput | SearchAgentStatusesCommandOutput | SearchAvailablePhoneNumbersCommandOutput | SearchContactEvaluationsCommandOutput | SearchContactFlowModulesCommandOutput | SearchContactFlowsCommandOutput | SearchContactsCommandOutput | SearchDataTablesCommandOutput | SearchEmailAddressesCommandOutput | SearchEvaluationFormsCommandOutput | SearchHoursOfOperationOverridesCommandOutput | SearchHoursOfOperationsCommandOutput | SearchNotificationsCommandOutput | SearchPredefinedAttributesCommandOutput | SearchPromptsCommandOutput | SearchQueuesCommandOutput | SearchQuickConnectsCommandOutput | SearchResourceTagsCommandOutput | SearchRoutingProfilesCommandOutput | SearchSecurityProfilesCommandOutput | SearchTestCasesCommandOutput | SearchUserHierarchyGroupsCommandOutput | SearchUsersCommandOutput | SearchViewsCommandOutput | SearchVocabulariesCommandOutput | SearchWorkspaceAssociationsCommandOutput | SearchWorkspacesCommandOutput | SendChatIntegrationEventCommandOutput | SendOutboundEmailCommandOutput | StartAttachedFileUploadCommandOutput | StartChatContactCommandOutput | StartContactEvaluationCommandOutput | StartContactMediaProcessingCommandOutput | StartContactRecordingCommandOutput | StartContactStreamingCommandOutput | StartEmailContactCommandOutput | StartOutboundChatContactCommandOutput | StartOutboundEmailContactCommandOutput | StartOutboundVoiceContactCommandOutput | StartScreenSharingCommandOutput | StartTaskContactCommandOutput | StartTestCaseExecutionCommandOutput | StartWebRTCContactCommandOutput | StopContactCommandOutput | StopContactMediaProcessingCommandOutput | StopContactRecordingCommandOutput | StopContactStreamingCommandOutput | StopTestCaseExecutionCommandOutput | SubmitContactEvaluationCommandOutput | SuspendContactRecordingCommandOutput | TagContactCommandOutput | TagResourceCommandOutput | TransferContactCommandOutput | UntagContactCommandOutput | UntagResourceCommandOutput | UpdateAgentStatusCommandOutput | UpdateAuthenticationProfileCommandOutput | UpdateContactAttributesCommandOutput | UpdateContactCommandOutput | UpdateContactEvaluationCommandOutput | UpdateContactFlowContentCommandOutput | UpdateContactFlowMetadataCommandOutput | UpdateContactFlowModuleAliasCommandOutput | UpdateContactFlowModuleContentCommandOutput | UpdateContactFlowModuleMetadataCommandOutput | UpdateContactFlowNameCommandOutput | UpdateContactRoutingDataCommandOutput | UpdateContactScheduleCommandOutput | UpdateDataTableAttributeCommandOutput | UpdateDataTableMetadataCommandOutput | UpdateDataTablePrimaryValuesCommandOutput | UpdateEmailAddressMetadataCommandOutput | UpdateEvaluationFormCommandOutput | UpdateHoursOfOperationCommandOutput | UpdateHoursOfOperationOverrideCommandOutput | UpdateInstanceAttributeCommandOutput | UpdateInstanceStorageConfigCommandOutput | UpdateNotificationContentCommandOutput | UpdateParticipantAuthenticationCommandOutput | UpdateParticipantRoleConfigCommandOutput | UpdatePhoneNumberCommandOutput | UpdatePhoneNumberMetadataCommandOutput | UpdatePredefinedAttributeCommandOutput | UpdatePromptCommandOutput | UpdateQueueHoursOfOperationCommandOutput | UpdateQueueMaxContactsCommandOutput | UpdateQueueNameCommandOutput | UpdateQueueOutboundCallerConfigCommandOutput | UpdateQueueOutboundEmailConfigCommandOutput | UpdateQueueStatusCommandOutput | UpdateQuickConnectConfigCommandOutput | UpdateQuickConnectNameCommandOutput | UpdateRoutingProfileAgentAvailabilityTimerCommandOutput | UpdateRoutingProfileConcurrencyCommandOutput | UpdateRoutingProfileDefaultOutboundQueueCommandOutput | UpdateRoutingProfileNameCommandOutput | UpdateRoutingProfileQueuesCommandOutput | UpdateRuleCommandOutput | UpdateSecurityProfileCommandOutput | UpdateTaskTemplateCommandOutput | UpdateTestCaseCommandOutput | UpdateTrafficDistributionCommandOutput | UpdateUserConfigCommandOutput | UpdateUserHierarchyCommandOutput | UpdateUserHierarchyGroupNameCommandOutput | UpdateUserHierarchyStructureCommandOutput | UpdateUserIdentityInfoCommandOutput | UpdateUserNotificationStatusCommandOutput | UpdateUserPhoneConfigCommandOutput | UpdateUserProficienciesCommandOutput | UpdateUserRoutingProfileCommandOutput | UpdateUserSecurityProfilesCommandOutput | UpdateViewContentCommandOutput | UpdateViewMetadataCommandOutput | UpdateWorkspaceMetadataCommandOutput | UpdateWorkspacePageCommandOutput | UpdateWorkspaceThemeCommandOutput | UpdateWorkspaceVisibilityCommandOutput;
|
|
387
|
+
export type ServiceOutputTypes = ActivateEvaluationFormCommandOutput | AssociateAnalyticsDataSetCommandOutput | AssociateApprovedOriginCommandOutput | AssociateBotCommandOutput | AssociateContactWithUserCommandOutput | AssociateDefaultVocabularyCommandOutput | AssociateEmailAddressAliasCommandOutput | AssociateFlowCommandOutput | AssociateHoursOfOperationsCommandOutput | AssociateInstanceStorageConfigCommandOutput | AssociateLambdaFunctionCommandOutput | AssociateLexBotCommandOutput | AssociatePhoneNumberContactFlowCommandOutput | AssociateQueueEmailAddressesCommandOutput | AssociateQueueQuickConnectsCommandOutput | AssociateRoutingProfileQueuesCommandOutput | AssociateSecurityKeyCommandOutput | AssociateSecurityProfilesCommandOutput | AssociateTrafficDistributionGroupUserCommandOutput | AssociateUserProficienciesCommandOutput | AssociateWorkspaceCommandOutput | BatchAssociateAnalyticsDataSetCommandOutput | BatchCreateDataTableValueCommandOutput | BatchDeleteDataTableValueCommandOutput | BatchDescribeDataTableValueCommandOutput | BatchDisassociateAnalyticsDataSetCommandOutput | BatchGetAttachedFileMetadataCommandOutput | BatchGetFlowAssociationCommandOutput | BatchPutContactCommandOutput | BatchUpdateDataTableValueCommandOutput | ClaimPhoneNumberCommandOutput | CompleteAttachedFileUploadCommandOutput | CreateAgentStatusCommandOutput | CreateContactCommandOutput | CreateContactFlowCommandOutput | CreateContactFlowModuleAliasCommandOutput | CreateContactFlowModuleCommandOutput | CreateContactFlowModuleVersionCommandOutput | CreateContactFlowVersionCommandOutput | CreateDataTableAttributeCommandOutput | CreateDataTableCommandOutput | CreateEmailAddressCommandOutput | CreateEvaluationFormCommandOutput | CreateHoursOfOperationCommandOutput | CreateHoursOfOperationOverrideCommandOutput | CreateInstanceCommandOutput | CreateIntegrationAssociationCommandOutput | CreateNotificationCommandOutput | CreateParticipantCommandOutput | CreatePersistentContactAssociationCommandOutput | CreatePredefinedAttributeCommandOutput | CreatePromptCommandOutput | CreatePushNotificationRegistrationCommandOutput | CreateQueueCommandOutput | CreateQuickConnectCommandOutput | CreateRoutingProfileCommandOutput | CreateRuleCommandOutput | CreateSecurityProfileCommandOutput | CreateTaskTemplateCommandOutput | CreateTestCaseCommandOutput | CreateTrafficDistributionGroupCommandOutput | CreateUseCaseCommandOutput | CreateUserCommandOutput | CreateUserHierarchyGroupCommandOutput | CreateViewCommandOutput | CreateViewVersionCommandOutput | CreateVocabularyCommandOutput | CreateWorkspaceCommandOutput | CreateWorkspacePageCommandOutput | DeactivateEvaluationFormCommandOutput | DeleteAttachedFileCommandOutput | DeleteContactEvaluationCommandOutput | DeleteContactFlowCommandOutput | DeleteContactFlowModuleAliasCommandOutput | DeleteContactFlowModuleCommandOutput | DeleteContactFlowModuleVersionCommandOutput | DeleteContactFlowVersionCommandOutput | DeleteDataTableAttributeCommandOutput | DeleteDataTableCommandOutput | DeleteEmailAddressCommandOutput | DeleteEvaluationFormCommandOutput | DeleteHoursOfOperationCommandOutput | DeleteHoursOfOperationOverrideCommandOutput | DeleteInstanceCommandOutput | DeleteIntegrationAssociationCommandOutput | DeleteNotificationCommandOutput | DeletePredefinedAttributeCommandOutput | DeletePromptCommandOutput | DeletePushNotificationRegistrationCommandOutput | DeleteQueueCommandOutput | DeleteQuickConnectCommandOutput | DeleteRoutingProfileCommandOutput | DeleteRuleCommandOutput | DeleteSecurityProfileCommandOutput | DeleteTaskTemplateCommandOutput | DeleteTestCaseCommandOutput | DeleteTrafficDistributionGroupCommandOutput | DeleteUseCaseCommandOutput | DeleteUserCommandOutput | DeleteUserHierarchyGroupCommandOutput | DeleteViewCommandOutput | DeleteViewVersionCommandOutput | DeleteVocabularyCommandOutput | DeleteWorkspaceCommandOutput | DeleteWorkspaceMediaCommandOutput | DeleteWorkspacePageCommandOutput | DescribeAgentStatusCommandOutput | DescribeAuthenticationProfileCommandOutput | DescribeContactCommandOutput | DescribeContactEvaluationCommandOutput | DescribeContactFlowCommandOutput | DescribeContactFlowModuleAliasCommandOutput | DescribeContactFlowModuleCommandOutput | DescribeDataTableAttributeCommandOutput | DescribeDataTableCommandOutput | DescribeEmailAddressCommandOutput | DescribeEvaluationFormCommandOutput | DescribeHoursOfOperationCommandOutput | DescribeHoursOfOperationOverrideCommandOutput | DescribeInstanceAttributeCommandOutput | DescribeInstanceCommandOutput | DescribeInstanceStorageConfigCommandOutput | DescribeNotificationCommandOutput | DescribePhoneNumberCommandOutput | DescribePredefinedAttributeCommandOutput | DescribePromptCommandOutput | DescribeQueueCommandOutput | DescribeQuickConnectCommandOutput | DescribeRoutingProfileCommandOutput | DescribeRuleCommandOutput | DescribeSecurityProfileCommandOutput | DescribeTestCaseCommandOutput | DescribeTrafficDistributionGroupCommandOutput | DescribeUserCommandOutput | DescribeUserHierarchyGroupCommandOutput | DescribeUserHierarchyStructureCommandOutput | DescribeViewCommandOutput | DescribeVocabularyCommandOutput | DescribeWorkspaceCommandOutput | DisassociateAnalyticsDataSetCommandOutput | DisassociateApprovedOriginCommandOutput | DisassociateBotCommandOutput | DisassociateEmailAddressAliasCommandOutput | DisassociateFlowCommandOutput | DisassociateHoursOfOperationsCommandOutput | DisassociateInstanceStorageConfigCommandOutput | DisassociateLambdaFunctionCommandOutput | DisassociateLexBotCommandOutput | DisassociatePhoneNumberContactFlowCommandOutput | DisassociateQueueEmailAddressesCommandOutput | DisassociateQueueQuickConnectsCommandOutput | DisassociateRoutingProfileQueuesCommandOutput | DisassociateSecurityKeyCommandOutput | DisassociateSecurityProfilesCommandOutput | DisassociateTrafficDistributionGroupUserCommandOutput | DisassociateUserProficienciesCommandOutput | DisassociateWorkspaceCommandOutput | DismissUserContactCommandOutput | EvaluateDataTableValuesCommandOutput | GetAttachedFileCommandOutput | GetContactAttributesCommandOutput | GetContactMetricsCommandOutput | GetCurrentMetricDataCommandOutput | GetCurrentUserDataCommandOutput | GetEffectiveHoursOfOperationsCommandOutput | GetFederationTokenCommandOutput | GetFlowAssociationCommandOutput | GetMetricDataCommandOutput | GetMetricDataV2CommandOutput | GetPromptFileCommandOutput | GetTaskTemplateCommandOutput | GetTestCaseExecutionSummaryCommandOutput | GetTrafficDistributionCommandOutput | ImportPhoneNumberCommandOutput | ImportWorkspaceMediaCommandOutput | ListAgentStatusesCommandOutput | ListAnalyticsDataAssociationsCommandOutput | ListAnalyticsDataLakeDataSetsCommandOutput | ListApprovedOriginsCommandOutput | ListAssociatedContactsCommandOutput | ListAuthenticationProfilesCommandOutput | ListBotsCommandOutput | ListChildHoursOfOperationsCommandOutput | ListContactEvaluationsCommandOutput | ListContactFlowModuleAliasesCommandOutput | ListContactFlowModuleVersionsCommandOutput | ListContactFlowModulesCommandOutput | ListContactFlowVersionsCommandOutput | ListContactFlowsCommandOutput | ListContactReferencesCommandOutput | ListDataTableAttributesCommandOutput | ListDataTablePrimaryValuesCommandOutput | ListDataTableValuesCommandOutput | ListDataTablesCommandOutput | ListDefaultVocabulariesCommandOutput | ListEntitySecurityProfilesCommandOutput | ListEvaluationFormVersionsCommandOutput | ListEvaluationFormsCommandOutput | ListFlowAssociationsCommandOutput | ListHoursOfOperationOverridesCommandOutput | ListHoursOfOperationsCommandOutput | ListInstanceAttributesCommandOutput | ListInstanceStorageConfigsCommandOutput | ListInstancesCommandOutput | ListIntegrationAssociationsCommandOutput | ListLambdaFunctionsCommandOutput | ListLexBotsCommandOutput | ListNotificationsCommandOutput | ListPhoneNumbersCommandOutput | ListPhoneNumbersV2CommandOutput | ListPredefinedAttributesCommandOutput | ListPromptsCommandOutput | ListQueueEmailAddressesCommandOutput | ListQueueQuickConnectsCommandOutput | ListQueuesCommandOutput | ListQuickConnectsCommandOutput | ListRealtimeContactAnalysisSegmentsV2CommandOutput | ListRoutingProfileManualAssignmentQueuesCommandOutput | ListRoutingProfileQueuesCommandOutput | ListRoutingProfilesCommandOutput | ListRulesCommandOutput | ListSecurityKeysCommandOutput | ListSecurityProfileApplicationsCommandOutput | ListSecurityProfileFlowModulesCommandOutput | ListSecurityProfilePermissionsCommandOutput | ListSecurityProfilesCommandOutput | ListTagsForResourceCommandOutput | ListTaskTemplatesCommandOutput | ListTestCaseExecutionRecordsCommandOutput | ListTestCaseExecutionsCommandOutput | ListTestCasesCommandOutput | ListTrafficDistributionGroupUsersCommandOutput | ListTrafficDistributionGroupsCommandOutput | ListUseCasesCommandOutput | ListUserHierarchyGroupsCommandOutput | ListUserNotificationsCommandOutput | ListUserProficienciesCommandOutput | ListUsersCommandOutput | ListViewVersionsCommandOutput | ListViewsCommandOutput | ListWorkspaceMediaCommandOutput | ListWorkspacePagesCommandOutput | ListWorkspacesCommandOutput | MonitorContactCommandOutput | PauseContactCommandOutput | PutUserStatusCommandOutput | ReleasePhoneNumberCommandOutput | ReplicateInstanceCommandOutput | ResumeContactCommandOutput | ResumeContactRecordingCommandOutput | SearchAgentStatusesCommandOutput | SearchAvailablePhoneNumbersCommandOutput | SearchContactEvaluationsCommandOutput | SearchContactFlowModulesCommandOutput | SearchContactFlowsCommandOutput | SearchContactsCommandOutput | SearchDataTablesCommandOutput | SearchEmailAddressesCommandOutput | SearchEvaluationFormsCommandOutput | SearchHoursOfOperationOverridesCommandOutput | SearchHoursOfOperationsCommandOutput | SearchNotificationsCommandOutput | SearchPredefinedAttributesCommandOutput | SearchPromptsCommandOutput | SearchQueuesCommandOutput | SearchQuickConnectsCommandOutput | SearchResourceTagsCommandOutput | SearchRoutingProfilesCommandOutput | SearchSecurityProfilesCommandOutput | SearchTestCasesCommandOutput | SearchUserHierarchyGroupsCommandOutput | SearchUsersCommandOutput | SearchViewsCommandOutput | SearchVocabulariesCommandOutput | SearchWorkspaceAssociationsCommandOutput | SearchWorkspacesCommandOutput | SendChatIntegrationEventCommandOutput | SendOutboundEmailCommandOutput | StartAttachedFileUploadCommandOutput | StartChatContactCommandOutput | StartContactEvaluationCommandOutput | StartContactMediaProcessingCommandOutput | StartContactRecordingCommandOutput | StartContactStreamingCommandOutput | StartEmailContactCommandOutput | StartOutboundChatContactCommandOutput | StartOutboundEmailContactCommandOutput | StartOutboundVoiceContactCommandOutput | StartScreenSharingCommandOutput | StartTaskContactCommandOutput | StartTestCaseExecutionCommandOutput | StartWebRTCContactCommandOutput | StopContactCommandOutput | StopContactMediaProcessingCommandOutput | StopContactRecordingCommandOutput | StopContactStreamingCommandOutput | StopTestCaseExecutionCommandOutput | SubmitContactEvaluationCommandOutput | SuspendContactRecordingCommandOutput | TagContactCommandOutput | TagResourceCommandOutput | TransferContactCommandOutput | UntagContactCommandOutput | UntagResourceCommandOutput | UpdateAgentStatusCommandOutput | UpdateAuthenticationProfileCommandOutput | UpdateContactAttributesCommandOutput | UpdateContactCommandOutput | UpdateContactEvaluationCommandOutput | UpdateContactFlowContentCommandOutput | UpdateContactFlowMetadataCommandOutput | UpdateContactFlowModuleAliasCommandOutput | UpdateContactFlowModuleContentCommandOutput | UpdateContactFlowModuleMetadataCommandOutput | UpdateContactFlowNameCommandOutput | UpdateContactRoutingDataCommandOutput | UpdateContactScheduleCommandOutput | UpdateDataTableAttributeCommandOutput | UpdateDataTableMetadataCommandOutput | UpdateDataTablePrimaryValuesCommandOutput | UpdateEmailAddressMetadataCommandOutput | UpdateEvaluationFormCommandOutput | UpdateHoursOfOperationCommandOutput | UpdateHoursOfOperationOverrideCommandOutput | UpdateInstanceAttributeCommandOutput | UpdateInstanceStorageConfigCommandOutput | UpdateNotificationContentCommandOutput | UpdateParticipantAuthenticationCommandOutput | UpdateParticipantRoleConfigCommandOutput | UpdatePhoneNumberCommandOutput | UpdatePhoneNumberMetadataCommandOutput | UpdatePredefinedAttributeCommandOutput | UpdatePromptCommandOutput | UpdateQueueHoursOfOperationCommandOutput | UpdateQueueMaxContactsCommandOutput | UpdateQueueNameCommandOutput | UpdateQueueOutboundCallerConfigCommandOutput | UpdateQueueOutboundEmailConfigCommandOutput | UpdateQueueStatusCommandOutput | UpdateQuickConnectConfigCommandOutput | UpdateQuickConnectNameCommandOutput | UpdateRoutingProfileAgentAvailabilityTimerCommandOutput | UpdateRoutingProfileConcurrencyCommandOutput | UpdateRoutingProfileDefaultOutboundQueueCommandOutput | UpdateRoutingProfileNameCommandOutput | UpdateRoutingProfileQueuesCommandOutput | UpdateRuleCommandOutput | UpdateSecurityProfileCommandOutput | UpdateTaskTemplateCommandOutput | UpdateTestCaseCommandOutput | UpdateTrafficDistributionCommandOutput | UpdateUserConfigCommandOutput | UpdateUserHierarchyCommandOutput | UpdateUserHierarchyGroupNameCommandOutput | UpdateUserHierarchyStructureCommandOutput | UpdateUserIdentityInfoCommandOutput | UpdateUserNotificationStatusCommandOutput | UpdateUserPhoneConfigCommandOutput | UpdateUserProficienciesCommandOutput | UpdateUserRoutingProfileCommandOutput | UpdateUserSecurityProfilesCommandOutput | UpdateViewContentCommandOutput | UpdateViewMetadataCommandOutput | UpdateWorkspaceMetadataCommandOutput | UpdateWorkspacePageCommandOutput | UpdateWorkspaceThemeCommandOutput | UpdateWorkspaceVisibilityCommandOutput;
|
|
385
388
|
/**
|
|
386
389
|
* @public
|
|
387
390
|
*/
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
4
|
+
import type { AssociateQueueEmailAddressesRequest } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link AssociateQueueEmailAddressesCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface AssociateQueueEmailAddressesCommandInput extends AssociateQueueEmailAddressesRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link AssociateQueueEmailAddressesCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface AssociateQueueEmailAddressesCommandOutput extends __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const AssociateQueueEmailAddressesCommand_base: {
|
|
25
|
+
new (input: AssociateQueueEmailAddressesCommandInput): import("@smithy/smithy-client").CommandImpl<AssociateQueueEmailAddressesCommandInput, AssociateQueueEmailAddressesCommandOutput, ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: AssociateQueueEmailAddressesCommandInput): import("@smithy/smithy-client").CommandImpl<AssociateQueueEmailAddressesCommandInput, AssociateQueueEmailAddressesCommandOutput, ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Associates a set of email addresses with a queue to enable agents to select different "From" (system) email addresses when replying to inbound email contacts or initiating outbound email contacts. This allows agents to handle email contacts across different brands and business units within the same queue.</p>
|
|
31
|
+
* <p>
|
|
32
|
+
* <b>Important things to know</b>
|
|
33
|
+
* </p>
|
|
34
|
+
* <ul>
|
|
35
|
+
* <li>
|
|
36
|
+
* <p>You can associate up to 49 additional email addresses with a single queue, plus 1 default outbound email address, for a total of 50.</p>
|
|
37
|
+
* </li>
|
|
38
|
+
* <li>
|
|
39
|
+
* <p>The email addresses must already exist in the Amazon Connect instance before they can be associated with a queue.</p>
|
|
40
|
+
* </li>
|
|
41
|
+
* <li>
|
|
42
|
+
* <p>Agents will be able to select from these associated email addresses when handling email contacts in the queue.</p>
|
|
43
|
+
* </li>
|
|
44
|
+
* <li>
|
|
45
|
+
* <p>For inbound email contacts, agents can select from email addresses associated with the queue where the contact was accepted.</p>
|
|
46
|
+
* </li>
|
|
47
|
+
* <li>
|
|
48
|
+
* <p>For outbound email contacts, agents can select from email addresses associated with their default outbound queue configured in their routing profile.</p>
|
|
49
|
+
* </li>
|
|
50
|
+
* </ul>
|
|
51
|
+
* @example
|
|
52
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
53
|
+
* ```javascript
|
|
54
|
+
* import { ConnectClient, AssociateQueueEmailAddressesCommand } from "@aws-sdk/client-connect"; // ES Modules import
|
|
55
|
+
* // const { ConnectClient, AssociateQueueEmailAddressesCommand } = require("@aws-sdk/client-connect"); // CommonJS import
|
|
56
|
+
* // import type { ConnectClientConfig } from "@aws-sdk/client-connect";
|
|
57
|
+
* const config = {}; // type is ConnectClientConfig
|
|
58
|
+
* const client = new ConnectClient(config);
|
|
59
|
+
* const input = { // AssociateQueueEmailAddressesRequest
|
|
60
|
+
* InstanceId: "STRING_VALUE", // required
|
|
61
|
+
* QueueId: "STRING_VALUE", // required
|
|
62
|
+
* EmailAddressesConfig: [ // EmailAddressConfigList // required
|
|
63
|
+
* { // EmailAddressConfig
|
|
64
|
+
* EmailAddressId: "STRING_VALUE", // required
|
|
65
|
+
* },
|
|
66
|
+
* ],
|
|
67
|
+
* ClientToken: "STRING_VALUE",
|
|
68
|
+
* };
|
|
69
|
+
* const command = new AssociateQueueEmailAddressesCommand(input);
|
|
70
|
+
* const response = await client.send(command);
|
|
71
|
+
* // {};
|
|
72
|
+
*
|
|
73
|
+
* ```
|
|
74
|
+
*
|
|
75
|
+
* @param AssociateQueueEmailAddressesCommandInput - {@link AssociateQueueEmailAddressesCommandInput}
|
|
76
|
+
* @returns {@link AssociateQueueEmailAddressesCommandOutput}
|
|
77
|
+
* @see {@link AssociateQueueEmailAddressesCommandInput} for command's `input` shape.
|
|
78
|
+
* @see {@link AssociateQueueEmailAddressesCommandOutput} for command's `response` shape.
|
|
79
|
+
* @see {@link ConnectClientResolvedConfig | config} for ConnectClient's `config` shape.
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
82
|
+
* <p>You do not have sufficient permissions to perform this action.</p>
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
85
|
+
* <p>Request processing failed because of an error or failure with the service.</p>
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
88
|
+
* <p>One or more of the specified parameters are not valid.</p>
|
|
89
|
+
*
|
|
90
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
91
|
+
* <p>The request is not valid.</p>
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
94
|
+
* <p>The allowed limit for the resource has been exceeded.</p>
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
97
|
+
* <p>The specified resource was not found.</p>
|
|
98
|
+
*
|
|
99
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
100
|
+
* <p>The throttling limit has been exceeded.</p>
|
|
101
|
+
*
|
|
102
|
+
* @throws {@link ConnectServiceException}
|
|
103
|
+
* <p>Base exception class for all service exceptions from Connect service.</p>
|
|
104
|
+
*
|
|
105
|
+
*
|
|
106
|
+
* @public
|
|
107
|
+
*/
|
|
108
|
+
export declare class AssociateQueueEmailAddressesCommand extends AssociateQueueEmailAddressesCommand_base {
|
|
109
|
+
/** @internal type navigation helper, not in runtime. */
|
|
110
|
+
protected static __types: {
|
|
111
|
+
api: {
|
|
112
|
+
input: AssociateQueueEmailAddressesRequest;
|
|
113
|
+
output: {};
|
|
114
|
+
};
|
|
115
|
+
sdk: {
|
|
116
|
+
input: AssociateQueueEmailAddressesCommandInput;
|
|
117
|
+
output: AssociateQueueEmailAddressesCommandOutput;
|
|
118
|
+
};
|
|
119
|
+
};
|
|
120
|
+
}
|
|
@@ -74,6 +74,11 @@ declare const CreateQueueCommand_base: {
|
|
|
74
74
|
* QuickConnectIds: [ // QuickConnectsList
|
|
75
75
|
* "STRING_VALUE",
|
|
76
76
|
* ],
|
|
77
|
+
* EmailAddressesConfig: [ // EmailAddressConfigList
|
|
78
|
+
* { // EmailAddressConfig
|
|
79
|
+
* EmailAddressId: "STRING_VALUE", // required
|
|
80
|
+
* },
|
|
81
|
+
* ],
|
|
77
82
|
* Tags: { // TagMap
|
|
78
83
|
* "<keys>": "STRING_VALUE",
|
|
79
84
|
* },
|