@aws-sdk/client-connect 3.568.0 → 3.569.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 +40 -0
- package/dist-cjs/index.js +391 -81
- package/dist-es/Connect.js +10 -0
- package/dist-es/commands/BatchGetAttachedFileMetadataCommand.js +24 -0
- package/dist-es/commands/CompleteAttachedFileUploadCommand.js +24 -0
- package/dist-es/commands/DeleteAttachedFileCommand.js +24 -0
- package/dist-es/commands/DescribeInstanceCommand.js +1 -1
- package/dist-es/commands/GetAttachedFileCommand.js +24 -0
- package/dist-es/commands/ReplicateInstanceCommand.js +1 -1
- package/dist-es/commands/StartAttachedFileUploadCommand.js +24 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +33 -26
- package/dist-es/models/models_1.js +26 -42
- package/dist-es/models/models_2.js +42 -1
- package/dist-es/protocols/Aws_restJson1.js +163 -0
- package/dist-types/Connect.d.ts +35 -0
- package/dist-types/ConnectClient.d.ts +7 -2
- package/dist-types/commands/BatchGetAttachedFileMetadataCommand.d.ts +105 -0
- package/dist-types/commands/CompleteAttachedFileUploadCommand.d.ts +75 -0
- package/dist-types/commands/DeleteAttachedFileCommand.d.ts +78 -0
- package/dist-types/commands/DescribeHoursOfOperationCommand.d.ts +2 -1
- package/dist-types/commands/DescribeInstanceAttributeCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInstanceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInstanceStorageConfigCommand.d.ts +1 -1
- package/dist-types/commands/DescribePhoneNumberCommand.d.ts +1 -2
- package/dist-types/commands/GetAttachedFileCommand.d.ts +97 -0
- package/dist-types/commands/ReplicateInstanceCommand.d.ts +2 -1
- package/dist-types/commands/ResumeContactCommand.d.ts +1 -1
- package/dist-types/commands/ResumeContactRecordingCommand.d.ts +1 -1
- package/dist-types/commands/SearchAvailablePhoneNumbersCommand.d.ts +1 -1
- package/dist-types/commands/StartAttachedFileUploadCommand.d.ts +108 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +308 -239
- package/dist-types/models/models_1.d.ts +356 -344
- package/dist-types/models/models_2.d.ts +472 -2
- package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
- package/dist-types/ts3.4/Connect.d.ts +85 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/BatchGetAttachedFileMetadataCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CompleteAttachedFileUploadCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteAttachedFileCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DescribeHoursOfOperationCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeInstanceAttributeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeInstanceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeInstanceStorageConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribePhoneNumberCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/GetAttachedFileCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ReplicateInstanceCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ResumeContactCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ResumeContactRecordingCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchAvailablePhoneNumbersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartAttachedFileUploadCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +109 -74
- package/dist-types/ts3.4/models/models_1.d.ts +101 -99
- package/dist-types/ts3.4/models/models_2.d.ts +127 -3
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
- package/package.json +4 -2
|
@@ -258,6 +258,23 @@ export const se_BatchDisassociateAnalyticsDataSetCommand = async (input, context
|
|
|
258
258
|
b.m("POST").h(headers).b(body);
|
|
259
259
|
return b.build();
|
|
260
260
|
};
|
|
261
|
+
export const se_BatchGetAttachedFileMetadataCommand = async (input, context) => {
|
|
262
|
+
const b = rb(input, context);
|
|
263
|
+
const headers = {
|
|
264
|
+
"content-type": "application/json",
|
|
265
|
+
};
|
|
266
|
+
b.bp("/attached-files/{InstanceId}");
|
|
267
|
+
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
268
|
+
const query = map({
|
|
269
|
+
[_aRA]: [, __expectNonNull(input[_ARA], `AssociatedResourceArn`)],
|
|
270
|
+
});
|
|
271
|
+
let body;
|
|
272
|
+
body = JSON.stringify(take(input, {
|
|
273
|
+
FileIds: (_) => _json(_),
|
|
274
|
+
}));
|
|
275
|
+
b.m("POST").h(headers).q(query).b(body);
|
|
276
|
+
return b.build();
|
|
277
|
+
};
|
|
261
278
|
export const se_BatchGetFlowAssociationCommand = async (input, context) => {
|
|
262
279
|
const b = rb(input, context);
|
|
263
280
|
const headers = {
|
|
@@ -306,6 +323,19 @@ export const se_ClaimPhoneNumberCommand = async (input, context) => {
|
|
|
306
323
|
b.m("POST").h(headers).b(body);
|
|
307
324
|
return b.build();
|
|
308
325
|
};
|
|
326
|
+
export const se_CompleteAttachedFileUploadCommand = async (input, context) => {
|
|
327
|
+
const b = rb(input, context);
|
|
328
|
+
const headers = {};
|
|
329
|
+
b.bp("/attached-files/{InstanceId}/{FileId}");
|
|
330
|
+
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
331
|
+
b.p("FileId", () => input.FileId, "{FileId}", false);
|
|
332
|
+
const query = map({
|
|
333
|
+
[_aRA]: [, __expectNonNull(input[_ARA], `AssociatedResourceArn`)],
|
|
334
|
+
});
|
|
335
|
+
let body;
|
|
336
|
+
b.m("POST").h(headers).q(query).b(body);
|
|
337
|
+
return b.build();
|
|
338
|
+
};
|
|
309
339
|
export const se_CreateAgentStatusCommand = async (input, context) => {
|
|
310
340
|
const b = rb(input, context);
|
|
311
341
|
const headers = {
|
|
@@ -757,6 +787,19 @@ export const se_DeactivateEvaluationFormCommand = async (input, context) => {
|
|
|
757
787
|
b.m("POST").h(headers).b(body);
|
|
758
788
|
return b.build();
|
|
759
789
|
};
|
|
790
|
+
export const se_DeleteAttachedFileCommand = async (input, context) => {
|
|
791
|
+
const b = rb(input, context);
|
|
792
|
+
const headers = {};
|
|
793
|
+
b.bp("/attached-files/{InstanceId}/{FileId}");
|
|
794
|
+
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
795
|
+
b.p("FileId", () => input.FileId, "{FileId}", false);
|
|
796
|
+
const query = map({
|
|
797
|
+
[_aRA]: [, __expectNonNull(input[_ARA], `AssociatedResourceArn`)],
|
|
798
|
+
});
|
|
799
|
+
let body;
|
|
800
|
+
b.m("DELETE").h(headers).q(query).b(body);
|
|
801
|
+
return b.build();
|
|
802
|
+
};
|
|
760
803
|
export const se_DeleteContactEvaluationCommand = async (input, context) => {
|
|
761
804
|
const b = rb(input, context);
|
|
762
805
|
const headers = {};
|
|
@@ -1408,6 +1451,20 @@ export const se_DismissUserContactCommand = async (input, context) => {
|
|
|
1408
1451
|
b.m("POST").h(headers).b(body);
|
|
1409
1452
|
return b.build();
|
|
1410
1453
|
};
|
|
1454
|
+
export const se_GetAttachedFileCommand = async (input, context) => {
|
|
1455
|
+
const b = rb(input, context);
|
|
1456
|
+
const headers = {};
|
|
1457
|
+
b.bp("/attached-files/{InstanceId}/{FileId}");
|
|
1458
|
+
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
1459
|
+
b.p("FileId", () => input.FileId, "{FileId}", false);
|
|
1460
|
+
const query = map({
|
|
1461
|
+
[_uEIS]: [() => input.UrlExpiryInSeconds !== void 0, () => input[_UEIS].toString()],
|
|
1462
|
+
[_aRA]: [, __expectNonNull(input[_ARA], `AssociatedResourceArn`)],
|
|
1463
|
+
});
|
|
1464
|
+
let body;
|
|
1465
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
1466
|
+
return b.build();
|
|
1467
|
+
};
|
|
1411
1468
|
export const se_GetContactAttributesCommand = async (input, context) => {
|
|
1412
1469
|
const b = rb(input, context);
|
|
1413
1470
|
const headers = {};
|
|
@@ -2506,6 +2563,29 @@ export const se_SendChatIntegrationEventCommand = async (input, context) => {
|
|
|
2506
2563
|
b.m("POST").h(headers).b(body);
|
|
2507
2564
|
return b.build();
|
|
2508
2565
|
};
|
|
2566
|
+
export const se_StartAttachedFileUploadCommand = async (input, context) => {
|
|
2567
|
+
const b = rb(input, context);
|
|
2568
|
+
const headers = {
|
|
2569
|
+
"content-type": "application/json",
|
|
2570
|
+
};
|
|
2571
|
+
b.bp("/attached-files/{InstanceId}");
|
|
2572
|
+
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
2573
|
+
const query = map({
|
|
2574
|
+
[_aRA]: [, __expectNonNull(input[_ARA], `AssociatedResourceArn`)],
|
|
2575
|
+
});
|
|
2576
|
+
let body;
|
|
2577
|
+
body = JSON.stringify(take(input, {
|
|
2578
|
+
ClientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
2579
|
+
CreatedBy: (_) => _json(_),
|
|
2580
|
+
FileName: [],
|
|
2581
|
+
FileSizeInBytes: [],
|
|
2582
|
+
FileUseCaseType: [],
|
|
2583
|
+
Tags: (_) => _json(_),
|
|
2584
|
+
UrlExpiryInSeconds: [],
|
|
2585
|
+
}));
|
|
2586
|
+
b.m("PUT").h(headers).q(query).b(body);
|
|
2587
|
+
return b.build();
|
|
2588
|
+
};
|
|
2509
2589
|
export const se_StartChatContactCommand = async (input, context) => {
|
|
2510
2590
|
const b = rb(input, context);
|
|
2511
2591
|
const headers = {
|
|
@@ -3741,6 +3821,21 @@ export const de_BatchDisassociateAnalyticsDataSetCommand = async (output, contex
|
|
|
3741
3821
|
Object.assign(contents, doc);
|
|
3742
3822
|
return contents;
|
|
3743
3823
|
};
|
|
3824
|
+
export const de_BatchGetAttachedFileMetadataCommand = async (output, context) => {
|
|
3825
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
3826
|
+
return de_CommandError(output, context);
|
|
3827
|
+
}
|
|
3828
|
+
const contents = map({
|
|
3829
|
+
$metadata: deserializeMetadata(output),
|
|
3830
|
+
});
|
|
3831
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
3832
|
+
const doc = take(data, {
|
|
3833
|
+
Errors: _json,
|
|
3834
|
+
Files: _json,
|
|
3835
|
+
});
|
|
3836
|
+
Object.assign(contents, doc);
|
|
3837
|
+
return contents;
|
|
3838
|
+
};
|
|
3744
3839
|
export const de_BatchGetFlowAssociationCommand = async (output, context) => {
|
|
3745
3840
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
3746
3841
|
return de_CommandError(output, context);
|
|
@@ -3785,6 +3880,16 @@ export const de_ClaimPhoneNumberCommand = async (output, context) => {
|
|
|
3785
3880
|
Object.assign(contents, doc);
|
|
3786
3881
|
return contents;
|
|
3787
3882
|
};
|
|
3883
|
+
export const de_CompleteAttachedFileUploadCommand = async (output, context) => {
|
|
3884
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
3885
|
+
return de_CommandError(output, context);
|
|
3886
|
+
}
|
|
3887
|
+
const contents = map({
|
|
3888
|
+
$metadata: deserializeMetadata(output),
|
|
3889
|
+
});
|
|
3890
|
+
await collectBody(output.body, context);
|
|
3891
|
+
return contents;
|
|
3892
|
+
};
|
|
3788
3893
|
export const de_CreateAgentStatusCommand = async (output, context) => {
|
|
3789
3894
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
3790
3895
|
return de_CommandError(output, context);
|
|
@@ -4154,6 +4259,16 @@ export const de_DeactivateEvaluationFormCommand = async (output, context) => {
|
|
|
4154
4259
|
Object.assign(contents, doc);
|
|
4155
4260
|
return contents;
|
|
4156
4261
|
};
|
|
4262
|
+
export const de_DeleteAttachedFileCommand = async (output, context) => {
|
|
4263
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
4264
|
+
return de_CommandError(output, context);
|
|
4265
|
+
}
|
|
4266
|
+
const contents = map({
|
|
4267
|
+
$metadata: deserializeMetadata(output),
|
|
4268
|
+
});
|
|
4269
|
+
await collectBody(output.body, context);
|
|
4270
|
+
return contents;
|
|
4271
|
+
};
|
|
4157
4272
|
export const de_DeleteContactEvaluationCommand = async (output, context) => {
|
|
4158
4273
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
4159
4274
|
return de_CommandError(output, context);
|
|
@@ -4857,6 +4972,30 @@ export const de_DismissUserContactCommand = async (output, context) => {
|
|
|
4857
4972
|
await collectBody(output.body, context);
|
|
4858
4973
|
return contents;
|
|
4859
4974
|
};
|
|
4975
|
+
export const de_GetAttachedFileCommand = async (output, context) => {
|
|
4976
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
4977
|
+
return de_CommandError(output, context);
|
|
4978
|
+
}
|
|
4979
|
+
const contents = map({
|
|
4980
|
+
$metadata: deserializeMetadata(output),
|
|
4981
|
+
});
|
|
4982
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
4983
|
+
const doc = take(data, {
|
|
4984
|
+
AssociatedResourceArn: __expectString,
|
|
4985
|
+
CreatedBy: (_) => _json(__expectUnion(_)),
|
|
4986
|
+
CreationTime: __expectString,
|
|
4987
|
+
DownloadUrlMetadata: _json,
|
|
4988
|
+
FileArn: __expectString,
|
|
4989
|
+
FileId: __expectString,
|
|
4990
|
+
FileName: __expectString,
|
|
4991
|
+
FileSizeInBytes: __expectLong,
|
|
4992
|
+
FileStatus: __expectString,
|
|
4993
|
+
FileUseCaseType: __expectString,
|
|
4994
|
+
Tags: _json,
|
|
4995
|
+
});
|
|
4996
|
+
Object.assign(contents, doc);
|
|
4997
|
+
return contents;
|
|
4998
|
+
};
|
|
4860
4999
|
export const de_GetContactAttributesCommand = async (output, context) => {
|
|
4861
5000
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
4862
5001
|
return de_CommandError(output, context);
|
|
@@ -5997,6 +6136,25 @@ export const de_SendChatIntegrationEventCommand = async (output, context) => {
|
|
|
5997
6136
|
Object.assign(contents, doc);
|
|
5998
6137
|
return contents;
|
|
5999
6138
|
};
|
|
6139
|
+
export const de_StartAttachedFileUploadCommand = async (output, context) => {
|
|
6140
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
6141
|
+
return de_CommandError(output, context);
|
|
6142
|
+
}
|
|
6143
|
+
const contents = map({
|
|
6144
|
+
$metadata: deserializeMetadata(output),
|
|
6145
|
+
});
|
|
6146
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
6147
|
+
const doc = take(data, {
|
|
6148
|
+
CreatedBy: (_) => _json(__expectUnion(_)),
|
|
6149
|
+
CreationTime: __expectString,
|
|
6150
|
+
FileArn: __expectString,
|
|
6151
|
+
FileId: __expectString,
|
|
6152
|
+
FileStatus: __expectString,
|
|
6153
|
+
UploadUrlMetadata: _json,
|
|
6154
|
+
});
|
|
6155
|
+
Object.assign(contents, doc);
|
|
6156
|
+
return contents;
|
|
6157
|
+
};
|
|
6000
6158
|
export const de_StartChatContactCommand = async (output, context) => {
|
|
6001
6159
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
6002
6160
|
return de_CommandError(output, context);
|
|
@@ -6948,6 +7106,7 @@ const de_InvalidRequestExceptionRes = async (parsedOutput, context) => {
|
|
|
6948
7106
|
const data = parsedOutput.body;
|
|
6949
7107
|
const doc = take(data, {
|
|
6950
7108
|
Message: __expectString,
|
|
7109
|
+
Reason: (_) => _json(__expectUnion(_)),
|
|
6951
7110
|
});
|
|
6952
7111
|
Object.assign(contents, doc);
|
|
6953
7112
|
const exception = new InvalidRequestException({
|
|
@@ -8571,6 +8730,7 @@ const isSerializableHeaderValue = (value) => value !== undefined &&
|
|
|
8571
8730
|
value !== "" &&
|
|
8572
8731
|
(!Object.getOwnPropertyNames(value).includes("length") || value.length != 0) &&
|
|
8573
8732
|
(!Object.getOwnPropertyNames(value).includes("size") || value.size != 0);
|
|
8733
|
+
const _ARA = "AssociatedResourceArn";
|
|
8574
8734
|
const _AST = "AgentStatusTypes";
|
|
8575
8735
|
const _BN = "BotName";
|
|
8576
8736
|
const _CFMS = "ContactFlowModuleState";
|
|
@@ -8601,7 +8761,9 @@ const _S = "Status";
|
|
|
8601
8761
|
const _SV = "SnapshotVersion";
|
|
8602
8762
|
const _T = "Type";
|
|
8603
8763
|
const _TK = "TagKeys";
|
|
8764
|
+
const _UEIS = "UrlExpiryInSeconds";
|
|
8604
8765
|
const _UI = "UserId";
|
|
8766
|
+
const _aRA = "associatedResourceArn";
|
|
8605
8767
|
const _bN = "botName";
|
|
8606
8768
|
const _cFT = "contactFlowTypes";
|
|
8607
8769
|
const _cI = "contactId";
|
|
@@ -8628,4 +8790,5 @@ const _sV = "snapshotVersion";
|
|
|
8628
8790
|
const _st = "status";
|
|
8629
8791
|
const _t = "type";
|
|
8630
8792
|
const _tK = "tagKeys";
|
|
8793
|
+
const _uEIS = "urlExpiryInSeconds";
|
|
8631
8794
|
const _v = "version";
|
package/dist-types/Connect.d.ts
CHANGED
|
@@ -16,9 +16,11 @@ import { AssociateTrafficDistributionGroupUserCommandInput, AssociateTrafficDist
|
|
|
16
16
|
import { AssociateUserProficienciesCommandInput, AssociateUserProficienciesCommandOutput } from "./commands/AssociateUserProficienciesCommand";
|
|
17
17
|
import { BatchAssociateAnalyticsDataSetCommandInput, BatchAssociateAnalyticsDataSetCommandOutput } from "./commands/BatchAssociateAnalyticsDataSetCommand";
|
|
18
18
|
import { BatchDisassociateAnalyticsDataSetCommandInput, BatchDisassociateAnalyticsDataSetCommandOutput } from "./commands/BatchDisassociateAnalyticsDataSetCommand";
|
|
19
|
+
import { BatchGetAttachedFileMetadataCommandInput, BatchGetAttachedFileMetadataCommandOutput } from "./commands/BatchGetAttachedFileMetadataCommand";
|
|
19
20
|
import { BatchGetFlowAssociationCommandInput, BatchGetFlowAssociationCommandOutput } from "./commands/BatchGetFlowAssociationCommand";
|
|
20
21
|
import { BatchPutContactCommandInput, BatchPutContactCommandOutput } from "./commands/BatchPutContactCommand";
|
|
21
22
|
import { ClaimPhoneNumberCommandInput, ClaimPhoneNumberCommandOutput } from "./commands/ClaimPhoneNumberCommand";
|
|
23
|
+
import { CompleteAttachedFileUploadCommandInput, CompleteAttachedFileUploadCommandOutput } from "./commands/CompleteAttachedFileUploadCommand";
|
|
22
24
|
import { CreateAgentStatusCommandInput, CreateAgentStatusCommandOutput } from "./commands/CreateAgentStatusCommand";
|
|
23
25
|
import { CreateContactFlowCommandInput, CreateContactFlowCommandOutput } from "./commands/CreateContactFlowCommand";
|
|
24
26
|
import { CreateContactFlowModuleCommandInput, CreateContactFlowModuleCommandOutput } from "./commands/CreateContactFlowModuleCommand";
|
|
@@ -44,6 +46,7 @@ import { CreateViewCommandInput, CreateViewCommandOutput } from "./commands/Crea
|
|
|
44
46
|
import { CreateViewVersionCommandInput, CreateViewVersionCommandOutput } from "./commands/CreateViewVersionCommand";
|
|
45
47
|
import { CreateVocabularyCommandInput, CreateVocabularyCommandOutput } from "./commands/CreateVocabularyCommand";
|
|
46
48
|
import { DeactivateEvaluationFormCommandInput, DeactivateEvaluationFormCommandOutput } from "./commands/DeactivateEvaluationFormCommand";
|
|
49
|
+
import { DeleteAttachedFileCommandInput, DeleteAttachedFileCommandOutput } from "./commands/DeleteAttachedFileCommand";
|
|
47
50
|
import { DeleteContactEvaluationCommandInput, DeleteContactEvaluationCommandOutput } from "./commands/DeleteContactEvaluationCommand";
|
|
48
51
|
import { DeleteContactFlowCommandInput, DeleteContactFlowCommandOutput } from "./commands/DeleteContactFlowCommand";
|
|
49
52
|
import { DeleteContactFlowModuleCommandInput, DeleteContactFlowModuleCommandOutput } from "./commands/DeleteContactFlowModuleCommand";
|
|
@@ -104,6 +107,7 @@ import { DisassociateSecurityKeyCommandInput, DisassociateSecurityKeyCommandOutp
|
|
|
104
107
|
import { DisassociateTrafficDistributionGroupUserCommandInput, DisassociateTrafficDistributionGroupUserCommandOutput } from "./commands/DisassociateTrafficDistributionGroupUserCommand";
|
|
105
108
|
import { DisassociateUserProficienciesCommandInput, DisassociateUserProficienciesCommandOutput } from "./commands/DisassociateUserProficienciesCommand";
|
|
106
109
|
import { DismissUserContactCommandInput, DismissUserContactCommandOutput } from "./commands/DismissUserContactCommand";
|
|
110
|
+
import { GetAttachedFileCommandInput, GetAttachedFileCommandOutput } from "./commands/GetAttachedFileCommand";
|
|
107
111
|
import { GetContactAttributesCommandInput, GetContactAttributesCommandOutput } from "./commands/GetContactAttributesCommand";
|
|
108
112
|
import { GetCurrentMetricDataCommandInput, GetCurrentMetricDataCommandOutput } from "./commands/GetCurrentMetricDataCommand";
|
|
109
113
|
import { GetCurrentUserDataCommandInput, GetCurrentUserDataCommandOutput } from "./commands/GetCurrentUserDataCommand";
|
|
@@ -179,6 +183,7 @@ import { SearchSecurityProfilesCommandInput, SearchSecurityProfilesCommandOutput
|
|
|
179
183
|
import { SearchUsersCommandInput, SearchUsersCommandOutput } from "./commands/SearchUsersCommand";
|
|
180
184
|
import { SearchVocabulariesCommandInput, SearchVocabulariesCommandOutput } from "./commands/SearchVocabulariesCommand";
|
|
181
185
|
import { SendChatIntegrationEventCommandInput, SendChatIntegrationEventCommandOutput } from "./commands/SendChatIntegrationEventCommand";
|
|
186
|
+
import { StartAttachedFileUploadCommandInput, StartAttachedFileUploadCommandOutput } from "./commands/StartAttachedFileUploadCommand";
|
|
182
187
|
import { StartChatContactCommandInput, StartChatContactCommandOutput } from "./commands/StartChatContactCommand";
|
|
183
188
|
import { StartContactEvaluationCommandInput, StartContactEvaluationCommandOutput } from "./commands/StartContactEvaluationCommand";
|
|
184
189
|
import { StartContactRecordingCommandInput, StartContactRecordingCommandOutput } from "./commands/StartContactRecordingCommand";
|
|
@@ -346,6 +351,12 @@ export interface Connect {
|
|
|
346
351
|
batchDisassociateAnalyticsDataSet(args: BatchDisassociateAnalyticsDataSetCommandInput, options?: __HttpHandlerOptions): Promise<BatchDisassociateAnalyticsDataSetCommandOutput>;
|
|
347
352
|
batchDisassociateAnalyticsDataSet(args: BatchDisassociateAnalyticsDataSetCommandInput, cb: (err: any, data?: BatchDisassociateAnalyticsDataSetCommandOutput) => void): void;
|
|
348
353
|
batchDisassociateAnalyticsDataSet(args: BatchDisassociateAnalyticsDataSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchDisassociateAnalyticsDataSetCommandOutput) => void): void;
|
|
354
|
+
/**
|
|
355
|
+
* @see {@link BatchGetAttachedFileMetadataCommand}
|
|
356
|
+
*/
|
|
357
|
+
batchGetAttachedFileMetadata(args: BatchGetAttachedFileMetadataCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetAttachedFileMetadataCommandOutput>;
|
|
358
|
+
batchGetAttachedFileMetadata(args: BatchGetAttachedFileMetadataCommandInput, cb: (err: any, data?: BatchGetAttachedFileMetadataCommandOutput) => void): void;
|
|
359
|
+
batchGetAttachedFileMetadata(args: BatchGetAttachedFileMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetAttachedFileMetadataCommandOutput) => void): void;
|
|
349
360
|
/**
|
|
350
361
|
* @see {@link BatchGetFlowAssociationCommand}
|
|
351
362
|
*/
|
|
@@ -364,6 +375,12 @@ export interface Connect {
|
|
|
364
375
|
claimPhoneNumber(args: ClaimPhoneNumberCommandInput, options?: __HttpHandlerOptions): Promise<ClaimPhoneNumberCommandOutput>;
|
|
365
376
|
claimPhoneNumber(args: ClaimPhoneNumberCommandInput, cb: (err: any, data?: ClaimPhoneNumberCommandOutput) => void): void;
|
|
366
377
|
claimPhoneNumber(args: ClaimPhoneNumberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ClaimPhoneNumberCommandOutput) => void): void;
|
|
378
|
+
/**
|
|
379
|
+
* @see {@link CompleteAttachedFileUploadCommand}
|
|
380
|
+
*/
|
|
381
|
+
completeAttachedFileUpload(args: CompleteAttachedFileUploadCommandInput, options?: __HttpHandlerOptions): Promise<CompleteAttachedFileUploadCommandOutput>;
|
|
382
|
+
completeAttachedFileUpload(args: CompleteAttachedFileUploadCommandInput, cb: (err: any, data?: CompleteAttachedFileUploadCommandOutput) => void): void;
|
|
383
|
+
completeAttachedFileUpload(args: CompleteAttachedFileUploadCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CompleteAttachedFileUploadCommandOutput) => void): void;
|
|
367
384
|
/**
|
|
368
385
|
* @see {@link CreateAgentStatusCommand}
|
|
369
386
|
*/
|
|
@@ -514,6 +531,12 @@ export interface Connect {
|
|
|
514
531
|
deactivateEvaluationForm(args: DeactivateEvaluationFormCommandInput, options?: __HttpHandlerOptions): Promise<DeactivateEvaluationFormCommandOutput>;
|
|
515
532
|
deactivateEvaluationForm(args: DeactivateEvaluationFormCommandInput, cb: (err: any, data?: DeactivateEvaluationFormCommandOutput) => void): void;
|
|
516
533
|
deactivateEvaluationForm(args: DeactivateEvaluationFormCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeactivateEvaluationFormCommandOutput) => void): void;
|
|
534
|
+
/**
|
|
535
|
+
* @see {@link DeleteAttachedFileCommand}
|
|
536
|
+
*/
|
|
537
|
+
deleteAttachedFile(args: DeleteAttachedFileCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAttachedFileCommandOutput>;
|
|
538
|
+
deleteAttachedFile(args: DeleteAttachedFileCommandInput, cb: (err: any, data?: DeleteAttachedFileCommandOutput) => void): void;
|
|
539
|
+
deleteAttachedFile(args: DeleteAttachedFileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAttachedFileCommandOutput) => void): void;
|
|
517
540
|
/**
|
|
518
541
|
* @see {@link DeleteContactEvaluationCommand}
|
|
519
542
|
*/
|
|
@@ -874,6 +897,12 @@ export interface Connect {
|
|
|
874
897
|
dismissUserContact(args: DismissUserContactCommandInput, options?: __HttpHandlerOptions): Promise<DismissUserContactCommandOutput>;
|
|
875
898
|
dismissUserContact(args: DismissUserContactCommandInput, cb: (err: any, data?: DismissUserContactCommandOutput) => void): void;
|
|
876
899
|
dismissUserContact(args: DismissUserContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DismissUserContactCommandOutput) => void): void;
|
|
900
|
+
/**
|
|
901
|
+
* @see {@link GetAttachedFileCommand}
|
|
902
|
+
*/
|
|
903
|
+
getAttachedFile(args: GetAttachedFileCommandInput, options?: __HttpHandlerOptions): Promise<GetAttachedFileCommandOutput>;
|
|
904
|
+
getAttachedFile(args: GetAttachedFileCommandInput, cb: (err: any, data?: GetAttachedFileCommandOutput) => void): void;
|
|
905
|
+
getAttachedFile(args: GetAttachedFileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAttachedFileCommandOutput) => void): void;
|
|
877
906
|
/**
|
|
878
907
|
* @see {@link GetContactAttributesCommand}
|
|
879
908
|
*/
|
|
@@ -1327,6 +1356,12 @@ export interface Connect {
|
|
|
1327
1356
|
sendChatIntegrationEvent(args: SendChatIntegrationEventCommandInput, options?: __HttpHandlerOptions): Promise<SendChatIntegrationEventCommandOutput>;
|
|
1328
1357
|
sendChatIntegrationEvent(args: SendChatIntegrationEventCommandInput, cb: (err: any, data?: SendChatIntegrationEventCommandOutput) => void): void;
|
|
1329
1358
|
sendChatIntegrationEvent(args: SendChatIntegrationEventCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendChatIntegrationEventCommandOutput) => void): void;
|
|
1359
|
+
/**
|
|
1360
|
+
* @see {@link StartAttachedFileUploadCommand}
|
|
1361
|
+
*/
|
|
1362
|
+
startAttachedFileUpload(args: StartAttachedFileUploadCommandInput, options?: __HttpHandlerOptions): Promise<StartAttachedFileUploadCommandOutput>;
|
|
1363
|
+
startAttachedFileUpload(args: StartAttachedFileUploadCommandInput, cb: (err: any, data?: StartAttachedFileUploadCommandOutput) => void): void;
|
|
1364
|
+
startAttachedFileUpload(args: StartAttachedFileUploadCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartAttachedFileUploadCommandOutput) => void): void;
|
|
1330
1365
|
/**
|
|
1331
1366
|
* @see {@link StartChatContactCommand}
|
|
1332
1367
|
*/
|
|
@@ -24,9 +24,11 @@ import { AssociateTrafficDistributionGroupUserCommandInput, AssociateTrafficDist
|
|
|
24
24
|
import { AssociateUserProficienciesCommandInput, AssociateUserProficienciesCommandOutput } from "./commands/AssociateUserProficienciesCommand";
|
|
25
25
|
import { BatchAssociateAnalyticsDataSetCommandInput, BatchAssociateAnalyticsDataSetCommandOutput } from "./commands/BatchAssociateAnalyticsDataSetCommand";
|
|
26
26
|
import { BatchDisassociateAnalyticsDataSetCommandInput, BatchDisassociateAnalyticsDataSetCommandOutput } from "./commands/BatchDisassociateAnalyticsDataSetCommand";
|
|
27
|
+
import { BatchGetAttachedFileMetadataCommandInput, BatchGetAttachedFileMetadataCommandOutput } from "./commands/BatchGetAttachedFileMetadataCommand";
|
|
27
28
|
import { BatchGetFlowAssociationCommandInput, BatchGetFlowAssociationCommandOutput } from "./commands/BatchGetFlowAssociationCommand";
|
|
28
29
|
import { BatchPutContactCommandInput, BatchPutContactCommandOutput } from "./commands/BatchPutContactCommand";
|
|
29
30
|
import { ClaimPhoneNumberCommandInput, ClaimPhoneNumberCommandOutput } from "./commands/ClaimPhoneNumberCommand";
|
|
31
|
+
import { CompleteAttachedFileUploadCommandInput, CompleteAttachedFileUploadCommandOutput } from "./commands/CompleteAttachedFileUploadCommand";
|
|
30
32
|
import { CreateAgentStatusCommandInput, CreateAgentStatusCommandOutput } from "./commands/CreateAgentStatusCommand";
|
|
31
33
|
import { CreateContactFlowCommandInput, CreateContactFlowCommandOutput } from "./commands/CreateContactFlowCommand";
|
|
32
34
|
import { CreateContactFlowModuleCommandInput, CreateContactFlowModuleCommandOutput } from "./commands/CreateContactFlowModuleCommand";
|
|
@@ -52,6 +54,7 @@ import { CreateViewCommandInput, CreateViewCommandOutput } from "./commands/Crea
|
|
|
52
54
|
import { CreateViewVersionCommandInput, CreateViewVersionCommandOutput } from "./commands/CreateViewVersionCommand";
|
|
53
55
|
import { CreateVocabularyCommandInput, CreateVocabularyCommandOutput } from "./commands/CreateVocabularyCommand";
|
|
54
56
|
import { DeactivateEvaluationFormCommandInput, DeactivateEvaluationFormCommandOutput } from "./commands/DeactivateEvaluationFormCommand";
|
|
57
|
+
import { DeleteAttachedFileCommandInput, DeleteAttachedFileCommandOutput } from "./commands/DeleteAttachedFileCommand";
|
|
55
58
|
import { DeleteContactEvaluationCommandInput, DeleteContactEvaluationCommandOutput } from "./commands/DeleteContactEvaluationCommand";
|
|
56
59
|
import { DeleteContactFlowCommandInput, DeleteContactFlowCommandOutput } from "./commands/DeleteContactFlowCommand";
|
|
57
60
|
import { DeleteContactFlowModuleCommandInput, DeleteContactFlowModuleCommandOutput } from "./commands/DeleteContactFlowModuleCommand";
|
|
@@ -112,6 +115,7 @@ import { DisassociateSecurityKeyCommandInput, DisassociateSecurityKeyCommandOutp
|
|
|
112
115
|
import { DisassociateTrafficDistributionGroupUserCommandInput, DisassociateTrafficDistributionGroupUserCommandOutput } from "./commands/DisassociateTrafficDistributionGroupUserCommand";
|
|
113
116
|
import { DisassociateUserProficienciesCommandInput, DisassociateUserProficienciesCommandOutput } from "./commands/DisassociateUserProficienciesCommand";
|
|
114
117
|
import { DismissUserContactCommandInput, DismissUserContactCommandOutput } from "./commands/DismissUserContactCommand";
|
|
118
|
+
import { GetAttachedFileCommandInput, GetAttachedFileCommandOutput } from "./commands/GetAttachedFileCommand";
|
|
115
119
|
import { GetContactAttributesCommandInput, GetContactAttributesCommandOutput } from "./commands/GetContactAttributesCommand";
|
|
116
120
|
import { GetCurrentMetricDataCommandInput, GetCurrentMetricDataCommandOutput } from "./commands/GetCurrentMetricDataCommand";
|
|
117
121
|
import { GetCurrentUserDataCommandInput, GetCurrentUserDataCommandOutput } from "./commands/GetCurrentUserDataCommand";
|
|
@@ -187,6 +191,7 @@ import { SearchSecurityProfilesCommandInput, SearchSecurityProfilesCommandOutput
|
|
|
187
191
|
import { SearchUsersCommandInput, SearchUsersCommandOutput } from "./commands/SearchUsersCommand";
|
|
188
192
|
import { SearchVocabulariesCommandInput, SearchVocabulariesCommandOutput } from "./commands/SearchVocabulariesCommand";
|
|
189
193
|
import { SendChatIntegrationEventCommandInput, SendChatIntegrationEventCommandOutput } from "./commands/SendChatIntegrationEventCommand";
|
|
194
|
+
import { StartAttachedFileUploadCommandInput, StartAttachedFileUploadCommandOutput } from "./commands/StartAttachedFileUploadCommand";
|
|
190
195
|
import { StartChatContactCommandInput, StartChatContactCommandOutput } from "./commands/StartChatContactCommand";
|
|
191
196
|
import { StartContactEvaluationCommandInput, StartContactEvaluationCommandOutput } from "./commands/StartContactEvaluationCommand";
|
|
192
197
|
import { StartContactRecordingCommandInput, StartContactRecordingCommandOutput } from "./commands/StartContactRecordingCommand";
|
|
@@ -256,11 +261,11 @@ export { __Client };
|
|
|
256
261
|
/**
|
|
257
262
|
* @public
|
|
258
263
|
*/
|
|
259
|
-
export type ServiceInputTypes = ActivateEvaluationFormCommandInput | AssociateAnalyticsDataSetCommandInput | AssociateApprovedOriginCommandInput | AssociateBotCommandInput | AssociateDefaultVocabularyCommandInput | AssociateFlowCommandInput | AssociateInstanceStorageConfigCommandInput | AssociateLambdaFunctionCommandInput | AssociateLexBotCommandInput | AssociatePhoneNumberContactFlowCommandInput | AssociateQueueQuickConnectsCommandInput | AssociateRoutingProfileQueuesCommandInput | AssociateSecurityKeyCommandInput | AssociateTrafficDistributionGroupUserCommandInput | AssociateUserProficienciesCommandInput | BatchAssociateAnalyticsDataSetCommandInput | BatchDisassociateAnalyticsDataSetCommandInput | BatchGetFlowAssociationCommandInput | BatchPutContactCommandInput | ClaimPhoneNumberCommandInput | CreateAgentStatusCommandInput | CreateContactFlowCommandInput | CreateContactFlowModuleCommandInput | CreateEvaluationFormCommandInput | CreateHoursOfOperationCommandInput | CreateInstanceCommandInput | CreateIntegrationAssociationCommandInput | CreateParticipantCommandInput | CreatePersistentContactAssociationCommandInput | CreatePredefinedAttributeCommandInput | CreatePromptCommandInput | CreateQueueCommandInput | CreateQuickConnectCommandInput | CreateRoutingProfileCommandInput | CreateRuleCommandInput | CreateSecurityProfileCommandInput | CreateTaskTemplateCommandInput | CreateTrafficDistributionGroupCommandInput | CreateUseCaseCommandInput | CreateUserCommandInput | CreateUserHierarchyGroupCommandInput | CreateViewCommandInput | CreateViewVersionCommandInput | CreateVocabularyCommandInput | DeactivateEvaluationFormCommandInput | DeleteContactEvaluationCommandInput | DeleteContactFlowCommandInput | DeleteContactFlowModuleCommandInput | DeleteEvaluationFormCommandInput | DeleteHoursOfOperationCommandInput | DeleteInstanceCommandInput | DeleteIntegrationAssociationCommandInput | DeletePredefinedAttributeCommandInput | DeletePromptCommandInput | DeleteQueueCommandInput | DeleteQuickConnectCommandInput | DeleteRoutingProfileCommandInput | DeleteRuleCommandInput | DeleteSecurityProfileCommandInput | DeleteTaskTemplateCommandInput | DeleteTrafficDistributionGroupCommandInput | DeleteUseCaseCommandInput | DeleteUserCommandInput | DeleteUserHierarchyGroupCommandInput | DeleteViewCommandInput | DeleteViewVersionCommandInput | DeleteVocabularyCommandInput | DescribeAgentStatusCommandInput | DescribeContactCommandInput | DescribeContactEvaluationCommandInput | DescribeContactFlowCommandInput | DescribeContactFlowModuleCommandInput | DescribeEvaluationFormCommandInput | DescribeHoursOfOperationCommandInput | 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 | GetContactAttributesCommandInput | GetCurrentMetricDataCommandInput | GetCurrentUserDataCommandInput | GetFederationTokenCommandInput | GetFlowAssociationCommandInput | GetMetricDataCommandInput | GetMetricDataV2CommandInput | GetPromptFileCommandInput | GetTaskTemplateCommandInput | GetTrafficDistributionCommandInput | ImportPhoneNumberCommandInput | ListAgentStatusesCommandInput | ListAnalyticsDataAssociationsCommandInput | ListApprovedOriginsCommandInput | ListBotsCommandInput | ListContactEvaluationsCommandInput | ListContactFlowModulesCommandInput | ListContactFlowsCommandInput | ListContactReferencesCommandInput | ListDefaultVocabulariesCommandInput | ListEvaluationFormVersionsCommandInput | ListEvaluationFormsCommandInput | ListFlowAssociationsCommandInput | 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 | SearchAvailablePhoneNumbersCommandInput | SearchContactsCommandInput | SearchHoursOfOperationsCommandInput | SearchPredefinedAttributesCommandInput | SearchPromptsCommandInput | SearchQueuesCommandInput | SearchQuickConnectsCommandInput | SearchResourceTagsCommandInput | SearchRoutingProfilesCommandInput | SearchSecurityProfilesCommandInput | SearchUsersCommandInput | SearchVocabulariesCommandInput | SendChatIntegrationEventCommandInput | StartChatContactCommandInput | StartContactEvaluationCommandInput | StartContactRecordingCommandInput | StartContactStreamingCommandInput | StartOutboundVoiceContactCommandInput | StartTaskContactCommandInput | StartWebRTCContactCommandInput | StopContactCommandInput | StopContactRecordingCommandInput | StopContactStreamingCommandInput | SubmitContactEvaluationCommandInput | SuspendContactRecordingCommandInput | TagContactCommandInput | TagResourceCommandInput | TransferContactCommandInput | UntagContactCommandInput | UntagResourceCommandInput | UpdateAgentStatusCommandInput | UpdateContactAttributesCommandInput | UpdateContactCommandInput | UpdateContactEvaluationCommandInput | UpdateContactFlowContentCommandInput | UpdateContactFlowMetadataCommandInput | UpdateContactFlowModuleContentCommandInput | UpdateContactFlowModuleMetadataCommandInput | UpdateContactFlowNameCommandInput | UpdateContactRoutingDataCommandInput | UpdateContactScheduleCommandInput | UpdateEvaluationFormCommandInput | UpdateHoursOfOperationCommandInput | UpdateInstanceAttributeCommandInput | UpdateInstanceStorageConfigCommandInput | UpdateParticipantRoleConfigCommandInput | UpdatePhoneNumberCommandInput | UpdatePhoneNumberMetadataCommandInput | UpdatePredefinedAttributeCommandInput | UpdatePromptCommandInput | UpdateQueueHoursOfOperationCommandInput | UpdateQueueMaxContactsCommandInput | UpdateQueueNameCommandInput | UpdateQueueOutboundCallerConfigCommandInput | UpdateQueueStatusCommandInput | UpdateQuickConnectConfigCommandInput | UpdateQuickConnectNameCommandInput | UpdateRoutingProfileAgentAvailabilityTimerCommandInput | UpdateRoutingProfileConcurrencyCommandInput | UpdateRoutingProfileDefaultOutboundQueueCommandInput | UpdateRoutingProfileNameCommandInput | UpdateRoutingProfileQueuesCommandInput | UpdateRuleCommandInput | UpdateSecurityProfileCommandInput | UpdateTaskTemplateCommandInput | UpdateTrafficDistributionCommandInput | UpdateUserHierarchyCommandInput | UpdateUserHierarchyGroupNameCommandInput | UpdateUserHierarchyStructureCommandInput | UpdateUserIdentityInfoCommandInput | UpdateUserPhoneConfigCommandInput | UpdateUserProficienciesCommandInput | UpdateUserRoutingProfileCommandInput | UpdateUserSecurityProfilesCommandInput | UpdateViewContentCommandInput | UpdateViewMetadataCommandInput;
|
|
264
|
+
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 | CreateContactFlowCommandInput | CreateContactFlowModuleCommandInput | CreateEvaluationFormCommandInput | CreateHoursOfOperationCommandInput | CreateInstanceCommandInput | CreateIntegrationAssociationCommandInput | CreateParticipantCommandInput | CreatePersistentContactAssociationCommandInput | CreatePredefinedAttributeCommandInput | CreatePromptCommandInput | CreateQueueCommandInput | CreateQuickConnectCommandInput | CreateRoutingProfileCommandInput | CreateRuleCommandInput | CreateSecurityProfileCommandInput | CreateTaskTemplateCommandInput | CreateTrafficDistributionGroupCommandInput | CreateUseCaseCommandInput | CreateUserCommandInput | CreateUserHierarchyGroupCommandInput | CreateViewCommandInput | CreateViewVersionCommandInput | CreateVocabularyCommandInput | DeactivateEvaluationFormCommandInput | DeleteAttachedFileCommandInput | DeleteContactEvaluationCommandInput | DeleteContactFlowCommandInput | DeleteContactFlowModuleCommandInput | DeleteEvaluationFormCommandInput | DeleteHoursOfOperationCommandInput | DeleteInstanceCommandInput | DeleteIntegrationAssociationCommandInput | DeletePredefinedAttributeCommandInput | DeletePromptCommandInput | DeleteQueueCommandInput | DeleteQuickConnectCommandInput | DeleteRoutingProfileCommandInput | DeleteRuleCommandInput | DeleteSecurityProfileCommandInput | DeleteTaskTemplateCommandInput | DeleteTrafficDistributionGroupCommandInput | DeleteUseCaseCommandInput | DeleteUserCommandInput | DeleteUserHierarchyGroupCommandInput | DeleteViewCommandInput | DeleteViewVersionCommandInput | DeleteVocabularyCommandInput | DescribeAgentStatusCommandInput | DescribeContactCommandInput | DescribeContactEvaluationCommandInput | DescribeContactFlowCommandInput | DescribeContactFlowModuleCommandInput | DescribeEvaluationFormCommandInput | DescribeHoursOfOperationCommandInput | 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 | GetFederationTokenCommandInput | GetFlowAssociationCommandInput | GetMetricDataCommandInput | GetMetricDataV2CommandInput | GetPromptFileCommandInput | GetTaskTemplateCommandInput | GetTrafficDistributionCommandInput | ImportPhoneNumberCommandInput | ListAgentStatusesCommandInput | ListAnalyticsDataAssociationsCommandInput | ListApprovedOriginsCommandInput | ListBotsCommandInput | ListContactEvaluationsCommandInput | ListContactFlowModulesCommandInput | ListContactFlowsCommandInput | ListContactReferencesCommandInput | ListDefaultVocabulariesCommandInput | ListEvaluationFormVersionsCommandInput | ListEvaluationFormsCommandInput | ListFlowAssociationsCommandInput | 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 | SearchAvailablePhoneNumbersCommandInput | SearchContactsCommandInput | SearchHoursOfOperationsCommandInput | SearchPredefinedAttributesCommandInput | SearchPromptsCommandInput | SearchQueuesCommandInput | SearchQuickConnectsCommandInput | SearchResourceTagsCommandInput | SearchRoutingProfilesCommandInput | SearchSecurityProfilesCommandInput | SearchUsersCommandInput | SearchVocabulariesCommandInput | SendChatIntegrationEventCommandInput | StartAttachedFileUploadCommandInput | StartChatContactCommandInput | StartContactEvaluationCommandInput | StartContactRecordingCommandInput | StartContactStreamingCommandInput | StartOutboundVoiceContactCommandInput | StartTaskContactCommandInput | StartWebRTCContactCommandInput | StopContactCommandInput | StopContactRecordingCommandInput | StopContactStreamingCommandInput | SubmitContactEvaluationCommandInput | SuspendContactRecordingCommandInput | TagContactCommandInput | TagResourceCommandInput | TransferContactCommandInput | UntagContactCommandInput | UntagResourceCommandInput | UpdateAgentStatusCommandInput | UpdateContactAttributesCommandInput | UpdateContactCommandInput | UpdateContactEvaluationCommandInput | UpdateContactFlowContentCommandInput | UpdateContactFlowMetadataCommandInput | UpdateContactFlowModuleContentCommandInput | UpdateContactFlowModuleMetadataCommandInput | UpdateContactFlowNameCommandInput | UpdateContactRoutingDataCommandInput | UpdateContactScheduleCommandInput | UpdateEvaluationFormCommandInput | UpdateHoursOfOperationCommandInput | UpdateInstanceAttributeCommandInput | UpdateInstanceStorageConfigCommandInput | UpdateParticipantRoleConfigCommandInput | UpdatePhoneNumberCommandInput | UpdatePhoneNumberMetadataCommandInput | UpdatePredefinedAttributeCommandInput | UpdatePromptCommandInput | UpdateQueueHoursOfOperationCommandInput | UpdateQueueMaxContactsCommandInput | UpdateQueueNameCommandInput | UpdateQueueOutboundCallerConfigCommandInput | UpdateQueueStatusCommandInput | UpdateQuickConnectConfigCommandInput | UpdateQuickConnectNameCommandInput | UpdateRoutingProfileAgentAvailabilityTimerCommandInput | UpdateRoutingProfileConcurrencyCommandInput | UpdateRoutingProfileDefaultOutboundQueueCommandInput | UpdateRoutingProfileNameCommandInput | UpdateRoutingProfileQueuesCommandInput | UpdateRuleCommandInput | UpdateSecurityProfileCommandInput | UpdateTaskTemplateCommandInput | UpdateTrafficDistributionCommandInput | UpdateUserHierarchyCommandInput | UpdateUserHierarchyGroupNameCommandInput | UpdateUserHierarchyStructureCommandInput | UpdateUserIdentityInfoCommandInput | UpdateUserPhoneConfigCommandInput | UpdateUserProficienciesCommandInput | UpdateUserRoutingProfileCommandInput | UpdateUserSecurityProfilesCommandInput | UpdateViewContentCommandInput | UpdateViewMetadataCommandInput;
|
|
260
265
|
/**
|
|
261
266
|
* @public
|
|
262
267
|
*/
|
|
263
|
-
export type ServiceOutputTypes = ActivateEvaluationFormCommandOutput | AssociateAnalyticsDataSetCommandOutput | AssociateApprovedOriginCommandOutput | AssociateBotCommandOutput | AssociateDefaultVocabularyCommandOutput | AssociateFlowCommandOutput | AssociateInstanceStorageConfigCommandOutput | AssociateLambdaFunctionCommandOutput | AssociateLexBotCommandOutput | AssociatePhoneNumberContactFlowCommandOutput | AssociateQueueQuickConnectsCommandOutput | AssociateRoutingProfileQueuesCommandOutput | AssociateSecurityKeyCommandOutput | AssociateTrafficDistributionGroupUserCommandOutput | AssociateUserProficienciesCommandOutput | BatchAssociateAnalyticsDataSetCommandOutput | BatchDisassociateAnalyticsDataSetCommandOutput | BatchGetFlowAssociationCommandOutput | BatchPutContactCommandOutput | ClaimPhoneNumberCommandOutput | CreateAgentStatusCommandOutput | CreateContactFlowCommandOutput | CreateContactFlowModuleCommandOutput | CreateEvaluationFormCommandOutput | CreateHoursOfOperationCommandOutput | CreateInstanceCommandOutput | CreateIntegrationAssociationCommandOutput | CreateParticipantCommandOutput | CreatePersistentContactAssociationCommandOutput | CreatePredefinedAttributeCommandOutput | CreatePromptCommandOutput | CreateQueueCommandOutput | CreateQuickConnectCommandOutput | CreateRoutingProfileCommandOutput | CreateRuleCommandOutput | CreateSecurityProfileCommandOutput | CreateTaskTemplateCommandOutput | CreateTrafficDistributionGroupCommandOutput | CreateUseCaseCommandOutput | CreateUserCommandOutput | CreateUserHierarchyGroupCommandOutput | CreateViewCommandOutput | CreateViewVersionCommandOutput | CreateVocabularyCommandOutput | DeactivateEvaluationFormCommandOutput | DeleteContactEvaluationCommandOutput | DeleteContactFlowCommandOutput | DeleteContactFlowModuleCommandOutput | DeleteEvaluationFormCommandOutput | DeleteHoursOfOperationCommandOutput | DeleteInstanceCommandOutput | DeleteIntegrationAssociationCommandOutput | DeletePredefinedAttributeCommandOutput | DeletePromptCommandOutput | DeleteQueueCommandOutput | DeleteQuickConnectCommandOutput | DeleteRoutingProfileCommandOutput | DeleteRuleCommandOutput | DeleteSecurityProfileCommandOutput | DeleteTaskTemplateCommandOutput | DeleteTrafficDistributionGroupCommandOutput | DeleteUseCaseCommandOutput | DeleteUserCommandOutput | DeleteUserHierarchyGroupCommandOutput | DeleteViewCommandOutput | DeleteViewVersionCommandOutput | DeleteVocabularyCommandOutput | DescribeAgentStatusCommandOutput | DescribeContactCommandOutput | DescribeContactEvaluationCommandOutput | DescribeContactFlowCommandOutput | DescribeContactFlowModuleCommandOutput | DescribeEvaluationFormCommandOutput | DescribeHoursOfOperationCommandOutput | 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 | GetContactAttributesCommandOutput | GetCurrentMetricDataCommandOutput | GetCurrentUserDataCommandOutput | GetFederationTokenCommandOutput | GetFlowAssociationCommandOutput | GetMetricDataCommandOutput | GetMetricDataV2CommandOutput | GetPromptFileCommandOutput | GetTaskTemplateCommandOutput | GetTrafficDistributionCommandOutput | ImportPhoneNumberCommandOutput | ListAgentStatusesCommandOutput | ListAnalyticsDataAssociationsCommandOutput | ListApprovedOriginsCommandOutput | ListBotsCommandOutput | ListContactEvaluationsCommandOutput | ListContactFlowModulesCommandOutput | ListContactFlowsCommandOutput | ListContactReferencesCommandOutput | ListDefaultVocabulariesCommandOutput | ListEvaluationFormVersionsCommandOutput | ListEvaluationFormsCommandOutput | ListFlowAssociationsCommandOutput | 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 | SearchAvailablePhoneNumbersCommandOutput | SearchContactsCommandOutput | SearchHoursOfOperationsCommandOutput | SearchPredefinedAttributesCommandOutput | SearchPromptsCommandOutput | SearchQueuesCommandOutput | SearchQuickConnectsCommandOutput | SearchResourceTagsCommandOutput | SearchRoutingProfilesCommandOutput | SearchSecurityProfilesCommandOutput | SearchUsersCommandOutput | SearchVocabulariesCommandOutput | SendChatIntegrationEventCommandOutput | StartChatContactCommandOutput | StartContactEvaluationCommandOutput | StartContactRecordingCommandOutput | StartContactStreamingCommandOutput | StartOutboundVoiceContactCommandOutput | StartTaskContactCommandOutput | StartWebRTCContactCommandOutput | StopContactCommandOutput | StopContactRecordingCommandOutput | StopContactStreamingCommandOutput | SubmitContactEvaluationCommandOutput | SuspendContactRecordingCommandOutput | TagContactCommandOutput | TagResourceCommandOutput | TransferContactCommandOutput | UntagContactCommandOutput | UntagResourceCommandOutput | UpdateAgentStatusCommandOutput | UpdateContactAttributesCommandOutput | UpdateContactCommandOutput | UpdateContactEvaluationCommandOutput | UpdateContactFlowContentCommandOutput | UpdateContactFlowMetadataCommandOutput | UpdateContactFlowModuleContentCommandOutput | UpdateContactFlowModuleMetadataCommandOutput | UpdateContactFlowNameCommandOutput | UpdateContactRoutingDataCommandOutput | UpdateContactScheduleCommandOutput | UpdateEvaluationFormCommandOutput | UpdateHoursOfOperationCommandOutput | UpdateInstanceAttributeCommandOutput | UpdateInstanceStorageConfigCommandOutput | UpdateParticipantRoleConfigCommandOutput | UpdatePhoneNumberCommandOutput | UpdatePhoneNumberMetadataCommandOutput | UpdatePredefinedAttributeCommandOutput | UpdatePromptCommandOutput | UpdateQueueHoursOfOperationCommandOutput | UpdateQueueMaxContactsCommandOutput | UpdateQueueNameCommandOutput | UpdateQueueOutboundCallerConfigCommandOutput | UpdateQueueStatusCommandOutput | UpdateQuickConnectConfigCommandOutput | UpdateQuickConnectNameCommandOutput | UpdateRoutingProfileAgentAvailabilityTimerCommandOutput | UpdateRoutingProfileConcurrencyCommandOutput | UpdateRoutingProfileDefaultOutboundQueueCommandOutput | UpdateRoutingProfileNameCommandOutput | UpdateRoutingProfileQueuesCommandOutput | UpdateRuleCommandOutput | UpdateSecurityProfileCommandOutput | UpdateTaskTemplateCommandOutput | UpdateTrafficDistributionCommandOutput | UpdateUserHierarchyCommandOutput | UpdateUserHierarchyGroupNameCommandOutput | UpdateUserHierarchyStructureCommandOutput | UpdateUserIdentityInfoCommandOutput | UpdateUserPhoneConfigCommandOutput | UpdateUserProficienciesCommandOutput | UpdateUserRoutingProfileCommandOutput | UpdateUserSecurityProfilesCommandOutput | UpdateViewContentCommandOutput | UpdateViewMetadataCommandOutput;
|
|
268
|
+
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 | CreateContactFlowCommandOutput | CreateContactFlowModuleCommandOutput | CreateEvaluationFormCommandOutput | CreateHoursOfOperationCommandOutput | CreateInstanceCommandOutput | CreateIntegrationAssociationCommandOutput | CreateParticipantCommandOutput | CreatePersistentContactAssociationCommandOutput | CreatePredefinedAttributeCommandOutput | CreatePromptCommandOutput | CreateQueueCommandOutput | CreateQuickConnectCommandOutput | CreateRoutingProfileCommandOutput | CreateRuleCommandOutput | CreateSecurityProfileCommandOutput | CreateTaskTemplateCommandOutput | CreateTrafficDistributionGroupCommandOutput | CreateUseCaseCommandOutput | CreateUserCommandOutput | CreateUserHierarchyGroupCommandOutput | CreateViewCommandOutput | CreateViewVersionCommandOutput | CreateVocabularyCommandOutput | DeactivateEvaluationFormCommandOutput | DeleteAttachedFileCommandOutput | DeleteContactEvaluationCommandOutput | DeleteContactFlowCommandOutput | DeleteContactFlowModuleCommandOutput | DeleteEvaluationFormCommandOutput | DeleteHoursOfOperationCommandOutput | DeleteInstanceCommandOutput | DeleteIntegrationAssociationCommandOutput | DeletePredefinedAttributeCommandOutput | DeletePromptCommandOutput | DeleteQueueCommandOutput | DeleteQuickConnectCommandOutput | DeleteRoutingProfileCommandOutput | DeleteRuleCommandOutput | DeleteSecurityProfileCommandOutput | DeleteTaskTemplateCommandOutput | DeleteTrafficDistributionGroupCommandOutput | DeleteUseCaseCommandOutput | DeleteUserCommandOutput | DeleteUserHierarchyGroupCommandOutput | DeleteViewCommandOutput | DeleteViewVersionCommandOutput | DeleteVocabularyCommandOutput | DescribeAgentStatusCommandOutput | DescribeContactCommandOutput | DescribeContactEvaluationCommandOutput | DescribeContactFlowCommandOutput | DescribeContactFlowModuleCommandOutput | DescribeEvaluationFormCommandOutput | DescribeHoursOfOperationCommandOutput | 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 | GetFederationTokenCommandOutput | GetFlowAssociationCommandOutput | GetMetricDataCommandOutput | GetMetricDataV2CommandOutput | GetPromptFileCommandOutput | GetTaskTemplateCommandOutput | GetTrafficDistributionCommandOutput | ImportPhoneNumberCommandOutput | ListAgentStatusesCommandOutput | ListAnalyticsDataAssociationsCommandOutput | ListApprovedOriginsCommandOutput | ListBotsCommandOutput | ListContactEvaluationsCommandOutput | ListContactFlowModulesCommandOutput | ListContactFlowsCommandOutput | ListContactReferencesCommandOutput | ListDefaultVocabulariesCommandOutput | ListEvaluationFormVersionsCommandOutput | ListEvaluationFormsCommandOutput | ListFlowAssociationsCommandOutput | 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 | SearchAvailablePhoneNumbersCommandOutput | SearchContactsCommandOutput | SearchHoursOfOperationsCommandOutput | SearchPredefinedAttributesCommandOutput | SearchPromptsCommandOutput | SearchQueuesCommandOutput | SearchQuickConnectsCommandOutput | SearchResourceTagsCommandOutput | SearchRoutingProfilesCommandOutput | SearchSecurityProfilesCommandOutput | SearchUsersCommandOutput | SearchVocabulariesCommandOutput | SendChatIntegrationEventCommandOutput | StartAttachedFileUploadCommandOutput | StartChatContactCommandOutput | StartContactEvaluationCommandOutput | StartContactRecordingCommandOutput | StartContactStreamingCommandOutput | StartOutboundVoiceContactCommandOutput | StartTaskContactCommandOutput | StartWebRTCContactCommandOutput | StopContactCommandOutput | StopContactRecordingCommandOutput | StopContactStreamingCommandOutput | SubmitContactEvaluationCommandOutput | SuspendContactRecordingCommandOutput | TagContactCommandOutput | TagResourceCommandOutput | TransferContactCommandOutput | UntagContactCommandOutput | UntagResourceCommandOutput | UpdateAgentStatusCommandOutput | UpdateContactAttributesCommandOutput | UpdateContactCommandOutput | UpdateContactEvaluationCommandOutput | UpdateContactFlowContentCommandOutput | UpdateContactFlowMetadataCommandOutput | UpdateContactFlowModuleContentCommandOutput | UpdateContactFlowModuleMetadataCommandOutput | UpdateContactFlowNameCommandOutput | UpdateContactRoutingDataCommandOutput | UpdateContactScheduleCommandOutput | UpdateEvaluationFormCommandOutput | UpdateHoursOfOperationCommandOutput | UpdateInstanceAttributeCommandOutput | UpdateInstanceStorageConfigCommandOutput | UpdateParticipantRoleConfigCommandOutput | UpdatePhoneNumberCommandOutput | UpdatePhoneNumberMetadataCommandOutput | UpdatePredefinedAttributeCommandOutput | UpdatePromptCommandOutput | UpdateQueueHoursOfOperationCommandOutput | UpdateQueueMaxContactsCommandOutput | UpdateQueueNameCommandOutput | UpdateQueueOutboundCallerConfigCommandOutput | UpdateQueueStatusCommandOutput | UpdateQuickConnectConfigCommandOutput | UpdateQuickConnectNameCommandOutput | UpdateRoutingProfileAgentAvailabilityTimerCommandOutput | UpdateRoutingProfileConcurrencyCommandOutput | UpdateRoutingProfileDefaultOutboundQueueCommandOutput | UpdateRoutingProfileNameCommandOutput | UpdateRoutingProfileQueuesCommandOutput | UpdateRuleCommandOutput | UpdateSecurityProfileCommandOutput | UpdateTaskTemplateCommandOutput | UpdateTrafficDistributionCommandOutput | UpdateUserHierarchyCommandOutput | UpdateUserHierarchyGroupNameCommandOutput | UpdateUserHierarchyStructureCommandOutput | UpdateUserIdentityInfoCommandOutput | UpdateUserPhoneConfigCommandOutput | UpdateUserProficienciesCommandOutput | UpdateUserRoutingProfileCommandOutput | UpdateUserSecurityProfilesCommandOutput | UpdateViewContentCommandOutput | UpdateViewMetadataCommandOutput;
|
|
264
269
|
/**
|
|
265
270
|
* @public
|
|
266
271
|
*/
|
|
@@ -0,0 +1,105 @@
|
|
|
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 { BatchGetAttachedFileMetadataRequest, BatchGetAttachedFileMetadataResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export { __MetadataBearer, $Command };
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*
|
|
12
|
+
* The input for {@link BatchGetAttachedFileMetadataCommand}.
|
|
13
|
+
*/
|
|
14
|
+
export interface BatchGetAttachedFileMetadataCommandInput extends BatchGetAttachedFileMetadataRequest {
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
*
|
|
19
|
+
* The output of {@link BatchGetAttachedFileMetadataCommand}.
|
|
20
|
+
*/
|
|
21
|
+
export interface BatchGetAttachedFileMetadataCommandOutput extends BatchGetAttachedFileMetadataResponse, __MetadataBearer {
|
|
22
|
+
}
|
|
23
|
+
declare const BatchGetAttachedFileMetadataCommand_base: {
|
|
24
|
+
new (input: BatchGetAttachedFileMetadataCommandInput): import("@smithy/smithy-client").CommandImpl<BatchGetAttachedFileMetadataCommandInput, BatchGetAttachedFileMetadataCommandOutput, ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: BatchGetAttachedFileMetadataCommandInput): import("@smithy/smithy-client").CommandImpl<BatchGetAttachedFileMetadataCommandInput, BatchGetAttachedFileMetadataCommandOutput, ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* <p>Allows you to retrieve metadata about multiple attached files on an associated resource.
|
|
30
|
+
* Each attached file provided in the input list must be associated with the input
|
|
31
|
+
* AssociatedResourceArn.</p>
|
|
32
|
+
* @example
|
|
33
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
34
|
+
* ```javascript
|
|
35
|
+
* import { ConnectClient, BatchGetAttachedFileMetadataCommand } from "@aws-sdk/client-connect"; // ES Modules import
|
|
36
|
+
* // const { ConnectClient, BatchGetAttachedFileMetadataCommand } = require("@aws-sdk/client-connect"); // CommonJS import
|
|
37
|
+
* const client = new ConnectClient(config);
|
|
38
|
+
* const input = { // BatchGetAttachedFileMetadataRequest
|
|
39
|
+
* FileIds: [ // FileIdList // required
|
|
40
|
+
* "STRING_VALUE",
|
|
41
|
+
* ],
|
|
42
|
+
* InstanceId: "STRING_VALUE", // required
|
|
43
|
+
* AssociatedResourceArn: "STRING_VALUE", // required
|
|
44
|
+
* };
|
|
45
|
+
* const command = new BatchGetAttachedFileMetadataCommand(input);
|
|
46
|
+
* const response = await client.send(command);
|
|
47
|
+
* // { // BatchGetAttachedFileMetadataResponse
|
|
48
|
+
* // Files: [ // AttachedFilesList
|
|
49
|
+
* // { // AttachedFile
|
|
50
|
+
* // CreationTime: "STRING_VALUE", // required
|
|
51
|
+
* // FileArn: "STRING_VALUE", // required
|
|
52
|
+
* // FileId: "STRING_VALUE", // required
|
|
53
|
+
* // FileName: "STRING_VALUE", // required
|
|
54
|
+
* // FileSizeInBytes: Number("long"), // required
|
|
55
|
+
* // FileStatus: "APPROVED" || "REJECTED" || "PROCESSING" || "FAILED", // required
|
|
56
|
+
* // CreatedBy: { // CreatedByInfo Union: only one key present
|
|
57
|
+
* // ConnectUserArn: "STRING_VALUE",
|
|
58
|
+
* // AWSIdentityArn: "STRING_VALUE",
|
|
59
|
+
* // },
|
|
60
|
+
* // FileUseCaseType: "ATTACHMENT",
|
|
61
|
+
* // AssociatedResourceArn: "STRING_VALUE",
|
|
62
|
+
* // Tags: { // TagMap
|
|
63
|
+
* // "<keys>": "STRING_VALUE",
|
|
64
|
+
* // },
|
|
65
|
+
* // },
|
|
66
|
+
* // ],
|
|
67
|
+
* // Errors: [ // AttachedFileErrorsList
|
|
68
|
+
* // { // AttachedFileError
|
|
69
|
+
* // ErrorCode: "STRING_VALUE",
|
|
70
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
71
|
+
* // FileId: "STRING_VALUE",
|
|
72
|
+
* // },
|
|
73
|
+
* // ],
|
|
74
|
+
* // };
|
|
75
|
+
*
|
|
76
|
+
* ```
|
|
77
|
+
*
|
|
78
|
+
* @param BatchGetAttachedFileMetadataCommandInput - {@link BatchGetAttachedFileMetadataCommandInput}
|
|
79
|
+
* @returns {@link BatchGetAttachedFileMetadataCommandOutput}
|
|
80
|
+
* @see {@link BatchGetAttachedFileMetadataCommandInput} for command's `input` shape.
|
|
81
|
+
* @see {@link BatchGetAttachedFileMetadataCommandOutput} for command's `response` shape.
|
|
82
|
+
* @see {@link ConnectClientResolvedConfig | config} for ConnectClient's `config` shape.
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
85
|
+
* <p>You do not have sufficient permissions to perform this action.</p>
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
88
|
+
* <p>Request processing failed because of an error or failure with the service.</p>
|
|
89
|
+
*
|
|
90
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
91
|
+
* <p>The request is not valid.</p>
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
94
|
+
* <p>The specified resource was not found.</p>
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
97
|
+
* <p>The throttling limit has been exceeded.</p>
|
|
98
|
+
*
|
|
99
|
+
* @throws {@link ConnectServiceException}
|
|
100
|
+
* <p>Base exception class for all service exceptions from Connect service.</p>
|
|
101
|
+
*
|
|
102
|
+
* @public
|
|
103
|
+
*/
|
|
104
|
+
export declare class BatchGetAttachedFileMetadataCommand extends BatchGetAttachedFileMetadataCommand_base {
|
|
105
|
+
}
|