@aws-sdk/client-connect 3.614.0 → 3.618.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 +17 -2
- package/dist-cjs/index.js +227 -31
- package/dist-es/Connect.js +4 -0
- package/dist-es/ConnectClient.js +5 -5
- package/dist-es/commands/SearchAgentStatusesCommand.js +24 -0
- package/dist-es/commands/SearchUserHierarchyGroupsCommand.js +24 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +5 -18
- package/dist-es/models/models_1.js +32 -0
- package/dist-es/models/models_2.js +12 -5
- package/dist-es/pagination/SearchAgentStatusesPaginator.js +4 -0
- package/dist-es/pagination/SearchUserHierarchyGroupsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +118 -2
- package/dist-types/Connect.d.ts +16 -3
- package/dist-types/ConnectClient.d.ts +8 -7
- package/dist-types/commands/DescribeContactEvaluationCommand.d.ts +1 -1
- package/dist-types/commands/ListRealtimeContactAnalysisSegmentsV2Command.d.ts +6 -1
- package/dist-types/commands/ListTrafficDistributionGroupUsersCommand.d.ts +1 -1
- package/dist-types/commands/ListTrafficDistributionGroupsCommand.d.ts +1 -1
- package/dist-types/commands/ListUseCasesCommand.d.ts +1 -1
- package/dist-types/commands/SearchAgentStatusesCommand.d.ts +142 -0
- package/dist-types/commands/SearchUserHierarchyGroupsCommand.d.ts +181 -0
- package/dist-types/commands/SearchUsersCommand.d.ts +32 -4
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/index.d.ts +2 -3
- package/dist-types/models/models_0.d.ts +128 -133
- package/dist-types/models/models_1.d.ts +335 -241
- package/dist-types/models/models_2.d.ts +537 -73
- package/dist-types/pagination/SearchAgentStatusesPaginator.d.ts +7 -0
- package/dist-types/pagination/SearchUserHierarchyGroupsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/Connect.d.ts +34 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +14 -2
- package/dist-types/ts3.4/commands/DescribeContactEvaluationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTrafficDistributionGroupUsersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTrafficDistributionGroupsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListUseCasesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchAgentStatusesCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/SearchUserHierarchyGroupsCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +27 -60
- package/dist-types/ts3.4/models/models_1.d.ts +100 -46
- package/dist-types/ts3.4/models/models_2.d.ts +125 -20
- package/dist-types/ts3.4/pagination/SearchAgentStatusesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/SearchUserHierarchyGroupsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +17 -17
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_SearchUserHierarchyGroupsCommand, se_SearchUserHierarchyGroupsCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class SearchUserHierarchyGroupsCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep({
|
|
10
|
+
...commonParams,
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [
|
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
16
|
+
];
|
|
17
|
+
})
|
|
18
|
+
.s("AmazonConnectService", "SearchUserHierarchyGroups", {})
|
|
19
|
+
.n("ConnectClient", "SearchUserHierarchyGroupsCommand")
|
|
20
|
+
.f(void 0, void 0)
|
|
21
|
+
.ser(se_SearchUserHierarchyGroupsCommand)
|
|
22
|
+
.de(de_SearchUserHierarchyGroupsCommand)
|
|
23
|
+
.build() {
|
|
24
|
+
}
|
|
@@ -171,6 +171,7 @@ export * from "./ReleasePhoneNumberCommand";
|
|
|
171
171
|
export * from "./ReplicateInstanceCommand";
|
|
172
172
|
export * from "./ResumeContactCommand";
|
|
173
173
|
export * from "./ResumeContactRecordingCommand";
|
|
174
|
+
export * from "./SearchAgentStatusesCommand";
|
|
174
175
|
export * from "./SearchAvailablePhoneNumbersCommand";
|
|
175
176
|
export * from "./SearchContactFlowModulesCommand";
|
|
176
177
|
export * from "./SearchContactFlowsCommand";
|
|
@@ -183,6 +184,7 @@ export * from "./SearchQuickConnectsCommand";
|
|
|
183
184
|
export * from "./SearchResourceTagsCommand";
|
|
184
185
|
export * from "./SearchRoutingProfilesCommand";
|
|
185
186
|
export * from "./SearchSecurityProfilesCommand";
|
|
187
|
+
export * from "./SearchUserHierarchyGroupsCommand";
|
|
186
188
|
export * from "./SearchUsersCommand";
|
|
187
189
|
export * from "./SearchVocabulariesCommand";
|
|
188
190
|
export * from "./SendChatIntegrationEventCommand";
|
|
@@ -131,6 +131,11 @@ export const AgentStatusType = {
|
|
|
131
131
|
OFFLINE: "OFFLINE",
|
|
132
132
|
ROUTABLE: "ROUTABLE",
|
|
133
133
|
};
|
|
134
|
+
export const StringComparisonType = {
|
|
135
|
+
CONTAINS: "CONTAINS",
|
|
136
|
+
EXACT: "EXACT",
|
|
137
|
+
STARTS_WITH: "STARTS_WITH",
|
|
138
|
+
};
|
|
134
139
|
export const MonitorCapability = {
|
|
135
140
|
BARGE: "BARGE",
|
|
136
141
|
SILENT_MONITOR: "SILENT_MONITOR",
|
|
@@ -620,24 +625,6 @@ export const AnsweringMachineDetectionStatus = {
|
|
|
620
625
|
VOICEMAIL_BEEP: "VOICEMAIL_BEEP",
|
|
621
626
|
VOICEMAIL_NO_BEEP: "VOICEMAIL_NO_BEEP",
|
|
622
627
|
};
|
|
623
|
-
export const RoutingCriteriaStepStatus = {
|
|
624
|
-
ACTIVE: "ACTIVE",
|
|
625
|
-
EXPIRED: "EXPIRED",
|
|
626
|
-
INACTIVE: "INACTIVE",
|
|
627
|
-
JOINED: "JOINED",
|
|
628
|
-
};
|
|
629
|
-
export var EvaluationAnswerData;
|
|
630
|
-
(function (EvaluationAnswerData) {
|
|
631
|
-
EvaluationAnswerData.visit = (value, visitor) => {
|
|
632
|
-
if (value.StringValue !== undefined)
|
|
633
|
-
return visitor.StringValue(value.StringValue);
|
|
634
|
-
if (value.NumericValue !== undefined)
|
|
635
|
-
return visitor.NumericValue(value.NumericValue);
|
|
636
|
-
if (value.NotApplicable !== undefined)
|
|
637
|
-
return visitor.NotApplicable(value.NotApplicable);
|
|
638
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
639
|
-
};
|
|
640
|
-
})(EvaluationAnswerData || (EvaluationAnswerData = {}));
|
|
641
628
|
export const CreateInstanceRequestFilterSensitiveLog = (obj) => ({
|
|
642
629
|
...obj,
|
|
643
630
|
...(obj.InstanceAlias && { InstanceAlias: SENSITIVE_STRING }),
|
|
@@ -1,6 +1,24 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { ConnectServiceException as __BaseException } from "./ConnectServiceException";
|
|
3
3
|
import { UserIdentityInfoFilterSensitiveLog, ViewFilterSensitiveLog, } from "./models_0";
|
|
4
|
+
export const RoutingCriteriaStepStatus = {
|
|
5
|
+
ACTIVE: "ACTIVE",
|
|
6
|
+
EXPIRED: "EXPIRED",
|
|
7
|
+
INACTIVE: "INACTIVE",
|
|
8
|
+
JOINED: "JOINED",
|
|
9
|
+
};
|
|
10
|
+
export var EvaluationAnswerData;
|
|
11
|
+
(function (EvaluationAnswerData) {
|
|
12
|
+
EvaluationAnswerData.visit = (value, visitor) => {
|
|
13
|
+
if (value.StringValue !== undefined)
|
|
14
|
+
return visitor.StringValue(value.StringValue);
|
|
15
|
+
if (value.NumericValue !== undefined)
|
|
16
|
+
return visitor.NumericValue(value.NumericValue);
|
|
17
|
+
if (value.NotApplicable !== undefined)
|
|
18
|
+
return visitor.NotApplicable(value.NotApplicable);
|
|
19
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
20
|
+
};
|
|
21
|
+
})(EvaluationAnswerData || (EvaluationAnswerData = {}));
|
|
4
22
|
export const EvaluationStatus = {
|
|
5
23
|
DRAFT: "DRAFT",
|
|
6
24
|
SUBMITTED: "SUBMITTED",
|
|
@@ -442,6 +460,7 @@ export const RealTimeContactAnalysisSegmentType = {
|
|
|
442
460
|
Categories: "Categories",
|
|
443
461
|
Event: "Event",
|
|
444
462
|
Issues: "Issues",
|
|
463
|
+
PostContactSummary: "PostContactSummary",
|
|
445
464
|
Transcript: "Transcript",
|
|
446
465
|
};
|
|
447
466
|
export const RealTimeContactAnalysisSupportedChannel = {
|
|
@@ -461,6 +480,17 @@ export var RealTimeContactAnalysisTimeData;
|
|
|
461
480
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
462
481
|
};
|
|
463
482
|
})(RealTimeContactAnalysisTimeData || (RealTimeContactAnalysisTimeData = {}));
|
|
483
|
+
export const RealTimeContactAnalysisPostContactSummaryFailureCode = {
|
|
484
|
+
FAILED_SAFETY_GUIDELINES: "FAILED_SAFETY_GUIDELINES",
|
|
485
|
+
INSUFFICIENT_CONVERSATION_CONTENT: "INSUFFICIENT_CONVERSATION_CONTENT",
|
|
486
|
+
INTERNAL_ERROR: "INTERNAL_ERROR",
|
|
487
|
+
INVALID_ANALYSIS_CONFIGURATION: "INVALID_ANALYSIS_CONFIGURATION",
|
|
488
|
+
QUOTA_EXCEEDED: "QUOTA_EXCEEDED",
|
|
489
|
+
};
|
|
490
|
+
export const RealTimeContactAnalysisPostContactSummaryStatus = {
|
|
491
|
+
COMPLETED: "COMPLETED",
|
|
492
|
+
FAILED: "FAILED",
|
|
493
|
+
};
|
|
464
494
|
export const RealTimeContactAnalysisSentimentLabel = {
|
|
465
495
|
NEGATIVE: "NEGATIVE",
|
|
466
496
|
NEUTRAL: "NEUTRAL",
|
|
@@ -479,6 +509,8 @@ export var RealtimeContactAnalysisSegment;
|
|
|
479
509
|
return visitor.Event(value.Event);
|
|
480
510
|
if (value.Attachments !== undefined)
|
|
481
511
|
return visitor.Attachments(value.Attachments);
|
|
512
|
+
if (value.PostContactSummary !== undefined)
|
|
513
|
+
return visitor.PostContactSummary(value.PostContactSummary);
|
|
482
514
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
483
515
|
};
|
|
484
516
|
})(RealtimeContactAnalysisSegment || (RealtimeContactAnalysisSegment = {}));
|
|
@@ -14,11 +14,6 @@ export class ConflictException extends __BaseException {
|
|
|
14
14
|
this.Message = opts.Message;
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
|
-
export const StringComparisonType = {
|
|
18
|
-
CONTAINS: "CONTAINS",
|
|
19
|
-
EXACT: "EXACT",
|
|
20
|
-
STARTS_WITH: "STARTS_WITH",
|
|
21
|
-
};
|
|
22
17
|
export const SearchContactsMatchType = {
|
|
23
18
|
MATCH_ALL: "MATCH_ALL",
|
|
24
19
|
MATCH_ANY: "MATCH_ANY",
|
|
@@ -57,6 +52,18 @@ export const HierarchyGroupMatchType = {
|
|
|
57
52
|
EXACT: "EXACT",
|
|
58
53
|
WITH_CHILD_GROUPS: "WITH_CHILD_GROUPS",
|
|
59
54
|
};
|
|
55
|
+
export const NumberComparisonType = {
|
|
56
|
+
EQUAL: "EQUAL",
|
|
57
|
+
GREATER: "GREATER",
|
|
58
|
+
GREATER_OR_EQUAL: "GREATER_OR_EQUAL",
|
|
59
|
+
LESSER: "LESSER",
|
|
60
|
+
LESSER_OR_EQUAL: "LESSER_OR_EQUAL",
|
|
61
|
+
NOT_EQUAL: "NOT_EQUAL",
|
|
62
|
+
RANGE: "RANGE",
|
|
63
|
+
};
|
|
64
|
+
export const TargetListType = {
|
|
65
|
+
PROFICIENCIES: "PROFICIENCIES",
|
|
66
|
+
};
|
|
60
67
|
export const ChatEventType = {
|
|
61
68
|
DISCONNECT: "DISCONNECT",
|
|
62
69
|
EVENT: "EVENT",
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { SearchAgentStatusesCommand, } from "../commands/SearchAgentStatusesCommand";
|
|
3
|
+
import { ConnectClient } from "../ConnectClient";
|
|
4
|
+
export const paginateSearchAgentStatuses = createPaginator(ConnectClient, SearchAgentStatusesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { SearchUserHierarchyGroupsCommand, } from "../commands/SearchUserHierarchyGroupsCommand";
|
|
3
|
+
import { ConnectClient } from "../ConnectClient";
|
|
4
|
+
export const paginateSearchUserHierarchyGroups = createPaginator(ConnectClient, SearchUserHierarchyGroupsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -46,6 +46,7 @@ export * from "./ListUserProficienciesPaginator";
|
|
|
46
46
|
export * from "./ListUsersPaginator";
|
|
47
47
|
export * from "./ListViewVersionsPaginator";
|
|
48
48
|
export * from "./ListViewsPaginator";
|
|
49
|
+
export * from "./SearchAgentStatusesPaginator";
|
|
49
50
|
export * from "./SearchAvailablePhoneNumbersPaginator";
|
|
50
51
|
export * from "./SearchContactFlowModulesPaginator";
|
|
51
52
|
export * from "./SearchContactFlowsPaginator";
|
|
@@ -58,5 +59,6 @@ export * from "./SearchQuickConnectsPaginator";
|
|
|
58
59
|
export * from "./SearchResourceTagsPaginator";
|
|
59
60
|
export * from "./SearchRoutingProfilesPaginator";
|
|
60
61
|
export * from "./SearchSecurityProfilesPaginator";
|
|
62
|
+
export * from "./SearchUserHierarchyGroupsPaginator";
|
|
61
63
|
export * from "./SearchUsersPaginator";
|
|
62
64
|
export * from "./SearchVocabulariesPaginator";
|
|
@@ -3,8 +3,8 @@ import { requestBuilder as rb } from "@smithy/core";
|
|
|
3
3
|
import { _json, collectBody, decorateServiceException as __decorateServiceException, expectBoolean as __expectBoolean, expectInt32 as __expectInt32, expectLong as __expectLong, expectNonNull as __expectNonNull, expectNumber as __expectNumber, expectObject as __expectObject, expectString as __expectString, limitedParseDouble as __limitedParseDouble, limitedParseFloat32 as __limitedParseFloat32, map, parseEpochTimestamp as __parseEpochTimestamp, parseRfc3339DateTimeWithOffset as __parseRfc3339DateTimeWithOffset, serializeFloat as __serializeFloat, take, withBaseException, } from "@smithy/smithy-client";
|
|
4
4
|
import { v4 as generateIdempotencyToken } from "uuid";
|
|
5
5
|
import { ConnectServiceException as __BaseException } from "../models/ConnectServiceException";
|
|
6
|
-
import { AccessDeniedException, DuplicateResourceException,
|
|
7
|
-
import { ContactFlowNotPublishedException, OutputTypeNotFoundException, UserNotFoundException, } from "../models/models_1";
|
|
6
|
+
import { AccessDeniedException, DuplicateResourceException, IdempotencyException, InternalServiceException, InvalidContactFlowException, InvalidContactFlowModuleException, InvalidParameterException, InvalidRequestException, LimitExceededException, PropertyValidationException, ResourceConflictException, ResourceInUseException, ResourceNotFoundException, ResourceNotReadyException, ServiceQuotaExceededException, ThrottlingException, TooManyRequestsException, } from "../models/models_0";
|
|
7
|
+
import { ContactFlowNotPublishedException, EvaluationAnswerData, OutputTypeNotFoundException, UserNotFoundException, } from "../models/models_1";
|
|
8
8
|
import { ConflictException, ContactNotFoundException, DestinationNotAllowedException, EvaluationFormItem, MaximumResultReturnedException, OutboundContactNotPermittedException, } from "../models/models_2";
|
|
9
9
|
export const se_ActivateEvaluationFormCommand = async (input, context) => {
|
|
10
10
|
const b = rb(input, context);
|
|
@@ -2363,6 +2363,23 @@ export const se_ResumeContactRecordingCommand = async (input, context) => {
|
|
|
2363
2363
|
b.m("POST").h(headers).b(body);
|
|
2364
2364
|
return b.build();
|
|
2365
2365
|
};
|
|
2366
|
+
export const se_SearchAgentStatusesCommand = async (input, context) => {
|
|
2367
|
+
const b = rb(input, context);
|
|
2368
|
+
const headers = {
|
|
2369
|
+
"content-type": "application/json",
|
|
2370
|
+
};
|
|
2371
|
+
b.bp("/search-agent-statuses");
|
|
2372
|
+
let body;
|
|
2373
|
+
body = JSON.stringify(take(input, {
|
|
2374
|
+
InstanceId: [],
|
|
2375
|
+
MaxResults: [],
|
|
2376
|
+
NextToken: [],
|
|
2377
|
+
SearchCriteria: (_) => se_AgentStatusSearchCriteria(_, context),
|
|
2378
|
+
SearchFilter: (_) => _json(_),
|
|
2379
|
+
}));
|
|
2380
|
+
b.m("POST").h(headers).b(body);
|
|
2381
|
+
return b.build();
|
|
2382
|
+
};
|
|
2366
2383
|
export const se_SearchAvailablePhoneNumbersCommand = async (input, context) => {
|
|
2367
2384
|
const b = rb(input, context);
|
|
2368
2385
|
const headers = {
|
|
@@ -2569,6 +2586,23 @@ export const se_SearchSecurityProfilesCommand = async (input, context) => {
|
|
|
2569
2586
|
b.m("POST").h(headers).b(body);
|
|
2570
2587
|
return b.build();
|
|
2571
2588
|
};
|
|
2589
|
+
export const se_SearchUserHierarchyGroupsCommand = async (input, context) => {
|
|
2590
|
+
const b = rb(input, context);
|
|
2591
|
+
const headers = {
|
|
2592
|
+
"content-type": "application/json",
|
|
2593
|
+
};
|
|
2594
|
+
b.bp("/search-user-hierarchy-groups");
|
|
2595
|
+
let body;
|
|
2596
|
+
body = JSON.stringify(take(input, {
|
|
2597
|
+
InstanceId: [],
|
|
2598
|
+
MaxResults: [],
|
|
2599
|
+
NextToken: [],
|
|
2600
|
+
SearchCriteria: (_) => se_UserHierarchyGroupSearchCriteria(_, context),
|
|
2601
|
+
SearchFilter: (_) => _json(_),
|
|
2602
|
+
}));
|
|
2603
|
+
b.m("POST").h(headers).b(body);
|
|
2604
|
+
return b.build();
|
|
2605
|
+
};
|
|
2572
2606
|
export const se_SearchUsersCommand = async (input, context) => {
|
|
2573
2607
|
const b = rb(input, context);
|
|
2574
2608
|
const headers = {
|
|
@@ -6038,6 +6072,22 @@ export const de_ResumeContactRecordingCommand = async (output, context) => {
|
|
|
6038
6072
|
await collectBody(output.body, context);
|
|
6039
6073
|
return contents;
|
|
6040
6074
|
};
|
|
6075
|
+
export const de_SearchAgentStatusesCommand = async (output, context) => {
|
|
6076
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
6077
|
+
return de_CommandError(output, context);
|
|
6078
|
+
}
|
|
6079
|
+
const contents = map({
|
|
6080
|
+
$metadata: deserializeMetadata(output),
|
|
6081
|
+
});
|
|
6082
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
6083
|
+
const doc = take(data, {
|
|
6084
|
+
AgentStatuses: (_) => de_AgentStatusList(_, context),
|
|
6085
|
+
ApproximateTotalCount: __expectLong,
|
|
6086
|
+
NextToken: __expectString,
|
|
6087
|
+
});
|
|
6088
|
+
Object.assign(contents, doc);
|
|
6089
|
+
return contents;
|
|
6090
|
+
};
|
|
6041
6091
|
export const de_SearchAvailablePhoneNumbersCommand = async (output, context) => {
|
|
6042
6092
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
6043
6093
|
return de_CommandError(output, context);
|
|
@@ -6228,6 +6278,22 @@ export const de_SearchSecurityProfilesCommand = async (output, context) => {
|
|
|
6228
6278
|
Object.assign(contents, doc);
|
|
6229
6279
|
return contents;
|
|
6230
6280
|
};
|
|
6281
|
+
export const de_SearchUserHierarchyGroupsCommand = async (output, context) => {
|
|
6282
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
6283
|
+
return de_CommandError(output, context);
|
|
6284
|
+
}
|
|
6285
|
+
const contents = map({
|
|
6286
|
+
$metadata: deserializeMetadata(output),
|
|
6287
|
+
});
|
|
6288
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
6289
|
+
const doc = take(data, {
|
|
6290
|
+
ApproximateTotalCount: __expectLong,
|
|
6291
|
+
NextToken: __expectString,
|
|
6292
|
+
UserHierarchyGroups: (_) => de_UserHierarchyGroupList(_, context),
|
|
6293
|
+
});
|
|
6294
|
+
Object.assign(contents, doc);
|
|
6295
|
+
return contents;
|
|
6296
|
+
};
|
|
6231
6297
|
export const de_SearchUsersCommand = async (output, context) => {
|
|
6232
6298
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
6233
6299
|
return de_CommandError(output, context);
|
|
@@ -7435,6 +7501,20 @@ const de_UserNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
|
7435
7501
|
});
|
|
7436
7502
|
return __decorateServiceException(exception, parsedOutput.body);
|
|
7437
7503
|
};
|
|
7504
|
+
const se_AgentStatusSearchConditionList = (input, context) => {
|
|
7505
|
+
return input
|
|
7506
|
+
.filter((e) => e != null)
|
|
7507
|
+
.map((entry) => {
|
|
7508
|
+
return se_AgentStatusSearchCriteria(entry, context);
|
|
7509
|
+
});
|
|
7510
|
+
};
|
|
7511
|
+
const se_AgentStatusSearchCriteria = (input, context) => {
|
|
7512
|
+
return take(input, {
|
|
7513
|
+
AndConditions: (_) => se_AgentStatusSearchConditionList(_, context),
|
|
7514
|
+
OrConditions: (_) => se_AgentStatusSearchConditionList(_, context),
|
|
7515
|
+
StringCondition: _json,
|
|
7516
|
+
});
|
|
7517
|
+
};
|
|
7438
7518
|
const se_ContactFlowModuleSearchConditionList = (input, context) => {
|
|
7439
7519
|
return input
|
|
7440
7520
|
.filter((e) => e != null)
|
|
@@ -7728,6 +7808,20 @@ const se_UpdateCaseActionDefinition = (input, context) => {
|
|
|
7728
7808
|
Fields: (_) => se_FieldValues(_, context),
|
|
7729
7809
|
});
|
|
7730
7810
|
};
|
|
7811
|
+
const se_UserHierarchyGroupSearchConditionList = (input, context) => {
|
|
7812
|
+
return input
|
|
7813
|
+
.filter((e) => e != null)
|
|
7814
|
+
.map((entry) => {
|
|
7815
|
+
return se_UserHierarchyGroupSearchCriteria(entry, context);
|
|
7816
|
+
});
|
|
7817
|
+
};
|
|
7818
|
+
const se_UserHierarchyGroupSearchCriteria = (input, context) => {
|
|
7819
|
+
return take(input, {
|
|
7820
|
+
AndConditions: (_) => se_UserHierarchyGroupSearchConditionList(_, context),
|
|
7821
|
+
OrConditions: (_) => se_UserHierarchyGroupSearchConditionList(_, context),
|
|
7822
|
+
StringCondition: _json,
|
|
7823
|
+
});
|
|
7824
|
+
};
|
|
7731
7825
|
const se_UserProficiency = (input, context) => {
|
|
7732
7826
|
return take(input, {
|
|
7733
7827
|
AttributeName: [],
|
|
@@ -7753,6 +7847,7 @@ const se_UserSearchCriteria = (input, context) => {
|
|
|
7753
7847
|
return take(input, {
|
|
7754
7848
|
AndConditions: (_) => se_UserSearchConditionList(_, context),
|
|
7755
7849
|
HierarchyGroupCondition: _json,
|
|
7850
|
+
ListCondition: _json,
|
|
7756
7851
|
OrConditions: (_) => se_UserSearchConditionList(_, context),
|
|
7757
7852
|
StringCondition: _json,
|
|
7758
7853
|
});
|
|
@@ -7805,6 +7900,14 @@ const de_AgentStatus = (output, context) => {
|
|
|
7805
7900
|
Type: __expectString,
|
|
7806
7901
|
});
|
|
7807
7902
|
};
|
|
7903
|
+
const de_AgentStatusList = (output, context) => {
|
|
7904
|
+
const retVal = (output || [])
|
|
7905
|
+
.filter((e) => e != null)
|
|
7906
|
+
.map((entry) => {
|
|
7907
|
+
return de_AgentStatus(entry, context);
|
|
7908
|
+
});
|
|
7909
|
+
return retVal;
|
|
7910
|
+
};
|
|
7808
7911
|
const de_AgentStatusReference = (output, context) => {
|
|
7809
7912
|
return take(output, {
|
|
7810
7913
|
StatusArn: __expectString,
|
|
@@ -8636,6 +8739,11 @@ const de_RealtimeContactAnalysisSegment = (output, context) => {
|
|
|
8636
8739
|
Issues: _json(output.Issues),
|
|
8637
8740
|
};
|
|
8638
8741
|
}
|
|
8742
|
+
if (output.PostContactSummary != null) {
|
|
8743
|
+
return {
|
|
8744
|
+
PostContactSummary: _json(output.PostContactSummary),
|
|
8745
|
+
};
|
|
8746
|
+
}
|
|
8639
8747
|
if (output.Transcript != null) {
|
|
8640
8748
|
return {
|
|
8641
8749
|
Transcript: de_RealTimeContactAnalysisSegmentTranscript(output.Transcript, context),
|
|
@@ -8943,6 +9051,14 @@ const de_UserDataList = (output, context) => {
|
|
|
8943
9051
|
});
|
|
8944
9052
|
return retVal;
|
|
8945
9053
|
};
|
|
9054
|
+
const de_UserHierarchyGroupList = (output, context) => {
|
|
9055
|
+
const retVal = (output || [])
|
|
9056
|
+
.filter((e) => e != null)
|
|
9057
|
+
.map((entry) => {
|
|
9058
|
+
return de_HierarchyGroup(entry, context);
|
|
9059
|
+
});
|
|
9060
|
+
return retVal;
|
|
9061
|
+
};
|
|
8946
9062
|
const de_UserProficiency = (output, context) => {
|
|
8947
9063
|
return take(output, {
|
|
8948
9064
|
AttributeName: __expectString,
|
package/dist-types/Connect.d.ts
CHANGED
|
@@ -172,6 +172,7 @@ import { ReleasePhoneNumberCommandInput, ReleasePhoneNumberCommandOutput } from
|
|
|
172
172
|
import { ReplicateInstanceCommandInput, ReplicateInstanceCommandOutput } from "./commands/ReplicateInstanceCommand";
|
|
173
173
|
import { ResumeContactCommandInput, ResumeContactCommandOutput } from "./commands/ResumeContactCommand";
|
|
174
174
|
import { ResumeContactRecordingCommandInput, ResumeContactRecordingCommandOutput } from "./commands/ResumeContactRecordingCommand";
|
|
175
|
+
import { SearchAgentStatusesCommandInput, SearchAgentStatusesCommandOutput } from "./commands/SearchAgentStatusesCommand";
|
|
175
176
|
import { SearchAvailablePhoneNumbersCommandInput, SearchAvailablePhoneNumbersCommandOutput } from "./commands/SearchAvailablePhoneNumbersCommand";
|
|
176
177
|
import { SearchContactFlowModulesCommandInput, SearchContactFlowModulesCommandOutput } from "./commands/SearchContactFlowModulesCommand";
|
|
177
178
|
import { SearchContactFlowsCommandInput, SearchContactFlowsCommandOutput } from "./commands/SearchContactFlowsCommand";
|
|
@@ -184,6 +185,7 @@ import { SearchQuickConnectsCommandInput, SearchQuickConnectsCommandOutput } fro
|
|
|
184
185
|
import { SearchResourceTagsCommandInput, SearchResourceTagsCommandOutput } from "./commands/SearchResourceTagsCommand";
|
|
185
186
|
import { SearchRoutingProfilesCommandInput, SearchRoutingProfilesCommandOutput } from "./commands/SearchRoutingProfilesCommand";
|
|
186
187
|
import { SearchSecurityProfilesCommandInput, SearchSecurityProfilesCommandOutput } from "./commands/SearchSecurityProfilesCommand";
|
|
188
|
+
import { SearchUserHierarchyGroupsCommandInput, SearchUserHierarchyGroupsCommandOutput } from "./commands/SearchUserHierarchyGroupsCommand";
|
|
187
189
|
import { SearchUsersCommandInput, SearchUsersCommandOutput } from "./commands/SearchUsersCommand";
|
|
188
190
|
import { SearchVocabulariesCommandInput, SearchVocabulariesCommandOutput } from "./commands/SearchVocabulariesCommand";
|
|
189
191
|
import { SendChatIntegrationEventCommandInput, SendChatIntegrationEventCommandOutput } from "./commands/SendChatIntegrationEventCommand";
|
|
@@ -1295,6 +1297,12 @@ export interface Connect {
|
|
|
1295
1297
|
resumeContactRecording(args: ResumeContactRecordingCommandInput, options?: __HttpHandlerOptions): Promise<ResumeContactRecordingCommandOutput>;
|
|
1296
1298
|
resumeContactRecording(args: ResumeContactRecordingCommandInput, cb: (err: any, data?: ResumeContactRecordingCommandOutput) => void): void;
|
|
1297
1299
|
resumeContactRecording(args: ResumeContactRecordingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResumeContactRecordingCommandOutput) => void): void;
|
|
1300
|
+
/**
|
|
1301
|
+
* @see {@link SearchAgentStatusesCommand}
|
|
1302
|
+
*/
|
|
1303
|
+
searchAgentStatuses(args: SearchAgentStatusesCommandInput, options?: __HttpHandlerOptions): Promise<SearchAgentStatusesCommandOutput>;
|
|
1304
|
+
searchAgentStatuses(args: SearchAgentStatusesCommandInput, cb: (err: any, data?: SearchAgentStatusesCommandOutput) => void): void;
|
|
1305
|
+
searchAgentStatuses(args: SearchAgentStatusesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchAgentStatusesCommandOutput) => void): void;
|
|
1298
1306
|
/**
|
|
1299
1307
|
* @see {@link SearchAvailablePhoneNumbersCommand}
|
|
1300
1308
|
*/
|
|
@@ -1367,6 +1375,12 @@ export interface Connect {
|
|
|
1367
1375
|
searchSecurityProfiles(args: SearchSecurityProfilesCommandInput, options?: __HttpHandlerOptions): Promise<SearchSecurityProfilesCommandOutput>;
|
|
1368
1376
|
searchSecurityProfiles(args: SearchSecurityProfilesCommandInput, cb: (err: any, data?: SearchSecurityProfilesCommandOutput) => void): void;
|
|
1369
1377
|
searchSecurityProfiles(args: SearchSecurityProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchSecurityProfilesCommandOutput) => void): void;
|
|
1378
|
+
/**
|
|
1379
|
+
* @see {@link SearchUserHierarchyGroupsCommand}
|
|
1380
|
+
*/
|
|
1381
|
+
searchUserHierarchyGroups(args: SearchUserHierarchyGroupsCommandInput, options?: __HttpHandlerOptions): Promise<SearchUserHierarchyGroupsCommandOutput>;
|
|
1382
|
+
searchUserHierarchyGroups(args: SearchUserHierarchyGroupsCommandInput, cb: (err: any, data?: SearchUserHierarchyGroupsCommandOutput) => void): void;
|
|
1383
|
+
searchUserHierarchyGroups(args: SearchUserHierarchyGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchUserHierarchyGroupsCommandOutput) => void): void;
|
|
1370
1384
|
/**
|
|
1371
1385
|
* @see {@link SearchUsersCommand}
|
|
1372
1386
|
*/
|
|
@@ -1780,14 +1794,13 @@ export interface Connect {
|
|
|
1780
1794
|
* <ul>
|
|
1781
1795
|
* <li>
|
|
1782
1796
|
* <p>
|
|
1783
|
-
* <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_Operations_Amazon_Connect_Service.html">Amazon Connect
|
|
1784
|
-
* actions</a>
|
|
1797
|
+
* <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_Operations_Amazon_Connect_Service.html">Amazon Connect actions</a>
|
|
1785
1798
|
* </p>
|
|
1786
1799
|
* </li>
|
|
1787
1800
|
* <li>
|
|
1788
1801
|
* <p>
|
|
1789
1802
|
* <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_Types_Amazon_Connect_Service.html">Amazon Connect
|
|
1790
|
-
*
|
|
1803
|
+
* data types</a>
|
|
1791
1804
|
* </p>
|
|
1792
1805
|
* </li>
|
|
1793
1806
|
* </ul>
|
|
@@ -180,6 +180,7 @@ import { ReleasePhoneNumberCommandInput, ReleasePhoneNumberCommandOutput } from
|
|
|
180
180
|
import { ReplicateInstanceCommandInput, ReplicateInstanceCommandOutput } from "./commands/ReplicateInstanceCommand";
|
|
181
181
|
import { ResumeContactCommandInput, ResumeContactCommandOutput } from "./commands/ResumeContactCommand";
|
|
182
182
|
import { ResumeContactRecordingCommandInput, ResumeContactRecordingCommandOutput } from "./commands/ResumeContactRecordingCommand";
|
|
183
|
+
import { SearchAgentStatusesCommandInput, SearchAgentStatusesCommandOutput } from "./commands/SearchAgentStatusesCommand";
|
|
183
184
|
import { SearchAvailablePhoneNumbersCommandInput, SearchAvailablePhoneNumbersCommandOutput } from "./commands/SearchAvailablePhoneNumbersCommand";
|
|
184
185
|
import { SearchContactFlowModulesCommandInput, SearchContactFlowModulesCommandOutput } from "./commands/SearchContactFlowModulesCommand";
|
|
185
186
|
import { SearchContactFlowsCommandInput, SearchContactFlowsCommandOutput } from "./commands/SearchContactFlowsCommand";
|
|
@@ -192,6 +193,7 @@ import { SearchQuickConnectsCommandInput, SearchQuickConnectsCommandOutput } fro
|
|
|
192
193
|
import { SearchResourceTagsCommandInput, SearchResourceTagsCommandOutput } from "./commands/SearchResourceTagsCommand";
|
|
193
194
|
import { SearchRoutingProfilesCommandInput, SearchRoutingProfilesCommandOutput } from "./commands/SearchRoutingProfilesCommand";
|
|
194
195
|
import { SearchSecurityProfilesCommandInput, SearchSecurityProfilesCommandOutput } from "./commands/SearchSecurityProfilesCommand";
|
|
196
|
+
import { SearchUserHierarchyGroupsCommandInput, SearchUserHierarchyGroupsCommandOutput } from "./commands/SearchUserHierarchyGroupsCommand";
|
|
195
197
|
import { SearchUsersCommandInput, SearchUsersCommandOutput } from "./commands/SearchUsersCommand";
|
|
196
198
|
import { SearchVocabulariesCommandInput, SearchVocabulariesCommandOutput } from "./commands/SearchVocabulariesCommand";
|
|
197
199
|
import { SendChatIntegrationEventCommandInput, SendChatIntegrationEventCommandOutput } from "./commands/SendChatIntegrationEventCommand";
|
|
@@ -266,11 +268,11 @@ export { __Client };
|
|
|
266
268
|
/**
|
|
267
269
|
* @public
|
|
268
270
|
*/
|
|
269
|
-
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 | DescribeAuthenticationProfileCommandInput | 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 | ListAuthenticationProfilesCommandInput | 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 | SearchContactFlowModulesCommandInput | SearchContactFlowsCommandInput | 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 | UpdateAuthenticationProfileCommandInput | 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;
|
|
271
|
+
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 | DescribeAuthenticationProfileCommandInput | 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 | ListAuthenticationProfilesCommandInput | 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 | SearchAgentStatusesCommandInput | SearchAvailablePhoneNumbersCommandInput | SearchContactFlowModulesCommandInput | SearchContactFlowsCommandInput | SearchContactsCommandInput | SearchHoursOfOperationsCommandInput | SearchPredefinedAttributesCommandInput | SearchPromptsCommandInput | SearchQueuesCommandInput | SearchQuickConnectsCommandInput | SearchResourceTagsCommandInput | SearchRoutingProfilesCommandInput | SearchSecurityProfilesCommandInput | SearchUserHierarchyGroupsCommandInput | SearchUsersCommandInput | SearchVocabulariesCommandInput | SendChatIntegrationEventCommandInput | StartAttachedFileUploadCommandInput | StartChatContactCommandInput | StartContactEvaluationCommandInput | StartContactRecordingCommandInput | StartContactStreamingCommandInput | StartOutboundVoiceContactCommandInput | StartTaskContactCommandInput | StartWebRTCContactCommandInput | StopContactCommandInput | StopContactRecordingCommandInput | StopContactStreamingCommandInput | SubmitContactEvaluationCommandInput | SuspendContactRecordingCommandInput | TagContactCommandInput | TagResourceCommandInput | TransferContactCommandInput | UntagContactCommandInput | UntagResourceCommandInput | UpdateAgentStatusCommandInput | UpdateAuthenticationProfileCommandInput | 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;
|
|
270
272
|
/**
|
|
271
273
|
* @public
|
|
272
274
|
*/
|
|
273
|
-
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 | DescribeAuthenticationProfileCommandOutput | 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 | ListAuthenticationProfilesCommandOutput | 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 | SearchContactFlowModulesCommandOutput | SearchContactFlowsCommandOutput | 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 | UpdateAuthenticationProfileCommandOutput | 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;
|
|
275
|
+
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 | DescribeAuthenticationProfileCommandOutput | 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 | ListAuthenticationProfilesCommandOutput | 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 | SearchAgentStatusesCommandOutput | SearchAvailablePhoneNumbersCommandOutput | SearchContactFlowModulesCommandOutput | SearchContactFlowsCommandOutput | SearchContactsCommandOutput | SearchHoursOfOperationsCommandOutput | SearchPredefinedAttributesCommandOutput | SearchPromptsCommandOutput | SearchQueuesCommandOutput | SearchQuickConnectsCommandOutput | SearchResourceTagsCommandOutput | SearchRoutingProfilesCommandOutput | SearchSecurityProfilesCommandOutput | SearchUserHierarchyGroupsCommandOutput | SearchUsersCommandOutput | SearchVocabulariesCommandOutput | SendChatIntegrationEventCommandOutput | StartAttachedFileUploadCommandOutput | StartChatContactCommandOutput | StartContactEvaluationCommandOutput | StartContactRecordingCommandOutput | StartContactStreamingCommandOutput | StartOutboundVoiceContactCommandOutput | StartTaskContactCommandOutput | StartWebRTCContactCommandOutput | StopContactCommandOutput | StopContactRecordingCommandOutput | StopContactStreamingCommandOutput | SubmitContactEvaluationCommandOutput | SuspendContactRecordingCommandOutput | TagContactCommandOutput | TagResourceCommandOutput | TransferContactCommandOutput | UntagContactCommandOutput | UntagResourceCommandOutput | UpdateAgentStatusCommandOutput | UpdateAuthenticationProfileCommandOutput | 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;
|
|
274
276
|
/**
|
|
275
277
|
* @public
|
|
276
278
|
*/
|
|
@@ -384,7 +386,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
384
386
|
/**
|
|
385
387
|
* @public
|
|
386
388
|
*/
|
|
387
|
-
export type ConnectClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> &
|
|
389
|
+
export type ConnectClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & HostHeaderInputConfig & UserAgentInputConfig & RetryInputConfig & HttpAuthSchemeInputConfig & ClientInputEndpointParameters;
|
|
388
390
|
/**
|
|
389
391
|
* @public
|
|
390
392
|
*
|
|
@@ -395,7 +397,7 @@ export interface ConnectClientConfig extends ConnectClientConfigType {
|
|
|
395
397
|
/**
|
|
396
398
|
* @public
|
|
397
399
|
*/
|
|
398
|
-
export type ConnectClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> &
|
|
400
|
+
export type ConnectClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & HostHeaderResolvedConfig & UserAgentResolvedConfig & RetryResolvedConfig & HttpAuthSchemeResolvedConfig & ClientResolvedEndpointParameters;
|
|
399
401
|
/**
|
|
400
402
|
* @public
|
|
401
403
|
*
|
|
@@ -407,14 +409,13 @@ export interface ConnectClientResolvedConfig extends ConnectClientResolvedConfig
|
|
|
407
409
|
* <ul>
|
|
408
410
|
* <li>
|
|
409
411
|
* <p>
|
|
410
|
-
* <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_Operations_Amazon_Connect_Service.html">Amazon Connect
|
|
411
|
-
* actions</a>
|
|
412
|
+
* <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_Operations_Amazon_Connect_Service.html">Amazon Connect actions</a>
|
|
412
413
|
* </p>
|
|
413
414
|
* </li>
|
|
414
415
|
* <li>
|
|
415
416
|
* <p>
|
|
416
417
|
* <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_Types_Amazon_Connect_Service.html">Amazon Connect
|
|
417
|
-
*
|
|
418
|
+
* data types</a>
|
|
418
419
|
* </p>
|
|
419
420
|
* </li>
|
|
420
421
|
* </ul>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
4
|
-
import { DescribeContactEvaluationRequest } from "../models/
|
|
4
|
+
import { DescribeContactEvaluationRequest } from "../models/models_1";
|
|
5
5
|
import { DescribeContactEvaluationResponse } from "../models/models_2";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
@@ -41,7 +41,7 @@ declare const ListRealtimeContactAnalysisSegmentsV2Command_base: {
|
|
|
41
41
|
* NextToken: "STRING_VALUE",
|
|
42
42
|
* OutputType: "Raw" || "Redacted", // required
|
|
43
43
|
* SegmentTypes: [ // RealTimeContactAnalysisSegmentTypes // required
|
|
44
|
-
* "Transcript" || "Categories" || "Issues" || "Event" || "Attachments",
|
|
44
|
+
* "Transcript" || "Categories" || "Issues" || "Event" || "Attachments" || "PostContactSummary",
|
|
45
45
|
* ],
|
|
46
46
|
* };
|
|
47
47
|
* const command = new ListRealtimeContactAnalysisSegmentsV2Command(input);
|
|
@@ -130,6 +130,11 @@ declare const ListRealtimeContactAnalysisSegmentsV2Command_base: {
|
|
|
130
130
|
* // AbsoluteTime: new Date("TIMESTAMP"),
|
|
131
131
|
* // },
|
|
132
132
|
* // },
|
|
133
|
+
* // PostContactSummary: { // RealTimeContactAnalysisSegmentPostContactSummary
|
|
134
|
+
* // Content: "STRING_VALUE",
|
|
135
|
+
* // Status: "FAILED" || "COMPLETED", // required
|
|
136
|
+
* // FailureCode: "QUOTA_EXCEEDED" || "INSUFFICIENT_CONVERSATION_CONTENT" || "FAILED_SAFETY_GUIDELINES" || "INVALID_ANALYSIS_CONFIGURATION" || "INTERNAL_ERROR",
|
|
137
|
+
* // },
|
|
133
138
|
* // },
|
|
134
139
|
* // ],
|
|
135
140
|
* // NextToken: "STRING_VALUE",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
4
|
-
import { ListTrafficDistributionGroupUsersRequest, ListTrafficDistributionGroupUsersResponse } from "../models/
|
|
4
|
+
import { ListTrafficDistributionGroupUsersRequest, ListTrafficDistributionGroupUsersResponse } from "../models/models_2";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|