@aws-sdk/client-connect 3.613.0 → 3.616.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 +204 -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 +18 -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 +113 -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/ListTrafficDistributionGroupUsersCommand.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 +128 -118
- package/dist-types/models/models_2.d.ts +431 -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/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 +60 -29
- package/dist-types/ts3.4/models/models_2.d.ts +107 -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 +24 -24
|
@@ -504,8 +504,8 @@ export interface AgentQualityMetrics {
|
|
|
504
504
|
}
|
|
505
505
|
/**
|
|
506
506
|
* <p>Can be used to define a list of preferred agents to target the contact within the queue.
|
|
507
|
-
*
|
|
508
|
-
*
|
|
507
|
+
* Note that agents must have the queue in their routing profile in order to be offered the
|
|
508
|
+
* contact.</p>
|
|
509
509
|
* @public
|
|
510
510
|
*/
|
|
511
511
|
export interface AgentsCriteria {
|
|
@@ -617,6 +617,126 @@ export interface AgentStatusReference {
|
|
|
617
617
|
*/
|
|
618
618
|
StatusName?: string;
|
|
619
619
|
}
|
|
620
|
+
/**
|
|
621
|
+
* @public
|
|
622
|
+
* @enum
|
|
623
|
+
*/
|
|
624
|
+
export declare const StringComparisonType: {
|
|
625
|
+
readonly CONTAINS: "CONTAINS";
|
|
626
|
+
readonly EXACT: "EXACT";
|
|
627
|
+
readonly STARTS_WITH: "STARTS_WITH";
|
|
628
|
+
};
|
|
629
|
+
/**
|
|
630
|
+
* @public
|
|
631
|
+
*/
|
|
632
|
+
export type StringComparisonType = (typeof StringComparisonType)[keyof typeof StringComparisonType];
|
|
633
|
+
/**
|
|
634
|
+
* <p>A leaf node condition which can be used to specify a string condition.</p>
|
|
635
|
+
* @public
|
|
636
|
+
*/
|
|
637
|
+
export interface StringCondition {
|
|
638
|
+
/**
|
|
639
|
+
* <p>The name of the field in the string condition.</p>
|
|
640
|
+
* @public
|
|
641
|
+
*/
|
|
642
|
+
FieldName?: string;
|
|
643
|
+
/**
|
|
644
|
+
* <p>The value of the string.</p>
|
|
645
|
+
* @public
|
|
646
|
+
*/
|
|
647
|
+
Value?: string;
|
|
648
|
+
/**
|
|
649
|
+
* <p>The type of comparison to be made when evaluating the string condition.</p>
|
|
650
|
+
* @public
|
|
651
|
+
*/
|
|
652
|
+
ComparisonType?: StringComparisonType;
|
|
653
|
+
}
|
|
654
|
+
/**
|
|
655
|
+
* <p>A leaf node condition which can be used to specify a tag condition, for example, <code>HAVE
|
|
656
|
+
* BPO = 123</code>. </p>
|
|
657
|
+
* @public
|
|
658
|
+
*/
|
|
659
|
+
export interface TagCondition {
|
|
660
|
+
/**
|
|
661
|
+
* <p>The tag key in the tag condition.</p>
|
|
662
|
+
* @public
|
|
663
|
+
*/
|
|
664
|
+
TagKey?: string;
|
|
665
|
+
/**
|
|
666
|
+
* <p>The tag value in the tag condition.</p>
|
|
667
|
+
* @public
|
|
668
|
+
*/
|
|
669
|
+
TagValue?: string;
|
|
670
|
+
}
|
|
671
|
+
/**
|
|
672
|
+
* <p>A list of conditions which would be applied together with an <code>AND</code>
|
|
673
|
+
* condition.</p>
|
|
674
|
+
* @public
|
|
675
|
+
*/
|
|
676
|
+
export interface CommonAttributeAndCondition {
|
|
677
|
+
/**
|
|
678
|
+
* <p>A leaf node condition which can be used to specify a tag condition.</p>
|
|
679
|
+
* @public
|
|
680
|
+
*/
|
|
681
|
+
TagConditions?: TagCondition[];
|
|
682
|
+
}
|
|
683
|
+
/**
|
|
684
|
+
* <p>An object that can be used to specify Tag conditions inside the <code>SearchFilter</code>.
|
|
685
|
+
* This accepts an <code>OR</code> or <code>AND</code> (List of List) input where: </p>
|
|
686
|
+
* <ul>
|
|
687
|
+
* <li>
|
|
688
|
+
* <p>The top level list specifies conditions that need to be applied with <code>OR</code>
|
|
689
|
+
* operator.</p>
|
|
690
|
+
* </li>
|
|
691
|
+
* <li>
|
|
692
|
+
* <p>The inner list specifies conditions that need to be applied with <code>AND</code>
|
|
693
|
+
* operator.</p>
|
|
694
|
+
* </li>
|
|
695
|
+
* </ul>
|
|
696
|
+
* @public
|
|
697
|
+
*/
|
|
698
|
+
export interface ControlPlaneAttributeFilter {
|
|
699
|
+
/**
|
|
700
|
+
* <p>A list of conditions which would be applied together with an <code>OR</code>
|
|
701
|
+
* condition.</p>
|
|
702
|
+
* @public
|
|
703
|
+
*/
|
|
704
|
+
OrConditions?: CommonAttributeAndCondition[];
|
|
705
|
+
/**
|
|
706
|
+
* <p>A list of conditions which would be applied together with an <code>AND</code>
|
|
707
|
+
* condition.</p>
|
|
708
|
+
* @public
|
|
709
|
+
*/
|
|
710
|
+
AndCondition?: CommonAttributeAndCondition;
|
|
711
|
+
/**
|
|
712
|
+
* <p>A leaf node condition which can be used to specify a tag condition, for example, <code>HAVE
|
|
713
|
+
* BPO = 123</code>. </p>
|
|
714
|
+
* @public
|
|
715
|
+
*/
|
|
716
|
+
TagCondition?: TagCondition;
|
|
717
|
+
}
|
|
718
|
+
/**
|
|
719
|
+
* <p>Filters to be applied to search results.</p>
|
|
720
|
+
* @public
|
|
721
|
+
*/
|
|
722
|
+
export interface AgentStatusSearchFilter {
|
|
723
|
+
/**
|
|
724
|
+
* <p>An object that can be used to specify Tag conditions inside the <code>SearchFilter</code>.
|
|
725
|
+
* This accepts an <code>OR</code> of <code>AND</code> (List of List) input where: </p>
|
|
726
|
+
* <ul>
|
|
727
|
+
* <li>
|
|
728
|
+
* <p>The top level list specifies conditions that need to be applied with <code>OR</code>
|
|
729
|
+
* operator.</p>
|
|
730
|
+
* </li>
|
|
731
|
+
* <li>
|
|
732
|
+
* <p>The inner list specifies conditions that need to be applied with <code>AND</code>
|
|
733
|
+
* operator.</p>
|
|
734
|
+
* </li>
|
|
735
|
+
* </ul>
|
|
736
|
+
* @public
|
|
737
|
+
*/
|
|
738
|
+
AttributeFilter?: ControlPlaneAttributeFilter;
|
|
739
|
+
}
|
|
620
740
|
/**
|
|
621
741
|
* <p>Summary information for an agent status.</p>
|
|
622
742
|
* @public
|
|
@@ -5728,8 +5848,8 @@ export interface DescribeAuthenticationProfileRequest {
|
|
|
5728
5848
|
* <p>Information about an authentication profile. An authentication profile is a resource that
|
|
5729
5849
|
* stores the authentication settings for users in your contact center. You use authentication
|
|
5730
5850
|
* profiles to set up IP address range restrictions and session timeouts. For more information, see
|
|
5731
|
-
*
|
|
5732
|
-
*
|
|
5851
|
+
* <a href="https://docs.aws.amazon.com/connect/latest/adminguide/authentication-profiles.html">Set IP
|
|
5852
|
+
* address restrictions or session timeouts</a>. </p>
|
|
5733
5853
|
* @public
|
|
5734
5854
|
*/
|
|
5735
5855
|
export interface AuthenticationProfile {
|
|
@@ -5755,16 +5875,16 @@ export interface AuthenticationProfile {
|
|
|
5755
5875
|
Description?: string;
|
|
5756
5876
|
/**
|
|
5757
5877
|
* <p>A list of IP address range strings that are allowed to access the Amazon Connect
|
|
5758
|
-
* instance. For more information about how to configure IP addresses, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/authentication-profiles.html#configure-ip-based-ac">Configure
|
|
5759
|
-
*
|
|
5878
|
+
* instance. For more information about how to configure IP addresses, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/authentication-profiles.html#configure-ip-based-ac">Configure IP
|
|
5879
|
+
* address based access control</a> in the <i>Amazon Connect Administrator
|
|
5760
5880
|
* Guide</i>.</p>
|
|
5761
5881
|
* @public
|
|
5762
5882
|
*/
|
|
5763
5883
|
AllowedIps?: string[];
|
|
5764
5884
|
/**
|
|
5765
5885
|
* <p>A list of IP address range strings that are blocked from accessing the Amazon Connect
|
|
5766
|
-
* instance. For more information about how to configure IP addresses, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/authentication-profiles.html#configure-ip-based-ac">Configure
|
|
5767
|
-
*
|
|
5886
|
+
* instance. For more information about how to configure IP addresses, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/authentication-profiles.html#configure-ip-based-ac">Configure IP
|
|
5887
|
+
* address based access control</a> in the <i>Amazon Connect Administrator
|
|
5768
5888
|
* Guide</i>.</p>
|
|
5769
5889
|
* @public
|
|
5770
5890
|
*/
|
|
@@ -6003,131 +6123,6 @@ export interface AttributeCondition {
|
|
|
6003
6123
|
*/
|
|
6004
6124
|
ComparisonOperator?: string;
|
|
6005
6125
|
}
|
|
6006
|
-
/**
|
|
6007
|
-
* @public
|
|
6008
|
-
* @enum
|
|
6009
|
-
*/
|
|
6010
|
-
export declare const RoutingCriteriaStepStatus: {
|
|
6011
|
-
readonly ACTIVE: "ACTIVE";
|
|
6012
|
-
readonly EXPIRED: "EXPIRED";
|
|
6013
|
-
readonly INACTIVE: "INACTIVE";
|
|
6014
|
-
readonly JOINED: "JOINED";
|
|
6015
|
-
};
|
|
6016
|
-
/**
|
|
6017
|
-
* @public
|
|
6018
|
-
*/
|
|
6019
|
-
export type RoutingCriteriaStepStatus = (typeof RoutingCriteriaStepStatus)[keyof typeof RoutingCriteriaStepStatus];
|
|
6020
|
-
/**
|
|
6021
|
-
* <p>A value for a segment attribute. This is structured as a map where the key is
|
|
6022
|
-
* <code>valueString</code> and the value is a string.</p>
|
|
6023
|
-
* @public
|
|
6024
|
-
*/
|
|
6025
|
-
export interface SegmentAttributeValue {
|
|
6026
|
-
/**
|
|
6027
|
-
* <p>The value of a segment attribute.</p>
|
|
6028
|
-
* @public
|
|
6029
|
-
*/
|
|
6030
|
-
ValueString?: string;
|
|
6031
|
-
}
|
|
6032
|
-
/**
|
|
6033
|
-
* <p>Information about Amazon Connect Wisdom.</p>
|
|
6034
|
-
* @public
|
|
6035
|
-
*/
|
|
6036
|
-
export interface WisdomInfo {
|
|
6037
|
-
/**
|
|
6038
|
-
* <p>The Amazon Resource Name (ARN) of the Wisdom session.</p>
|
|
6039
|
-
* @public
|
|
6040
|
-
*/
|
|
6041
|
-
SessionArn?: string;
|
|
6042
|
-
}
|
|
6043
|
-
/**
|
|
6044
|
-
* @public
|
|
6045
|
-
*/
|
|
6046
|
-
export interface DescribeContactEvaluationRequest {
|
|
6047
|
-
/**
|
|
6048
|
-
* <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
|
|
6049
|
-
* @public
|
|
6050
|
-
*/
|
|
6051
|
-
InstanceId: string | undefined;
|
|
6052
|
-
/**
|
|
6053
|
-
* <p>A unique identifier for the contact evaluation.</p>
|
|
6054
|
-
* @public
|
|
6055
|
-
*/
|
|
6056
|
-
EvaluationId: string | undefined;
|
|
6057
|
-
}
|
|
6058
|
-
/**
|
|
6059
|
-
* <p>Information about answer data for a contact evaluation. Answer data must be either string,
|
|
6060
|
-
* numeric, or not applicable.</p>
|
|
6061
|
-
* @public
|
|
6062
|
-
*/
|
|
6063
|
-
export type EvaluationAnswerData = EvaluationAnswerData.NotApplicableMember | EvaluationAnswerData.NumericValueMember | EvaluationAnswerData.StringValueMember | EvaluationAnswerData.$UnknownMember;
|
|
6064
|
-
/**
|
|
6065
|
-
* @public
|
|
6066
|
-
*/
|
|
6067
|
-
export declare namespace EvaluationAnswerData {
|
|
6068
|
-
/**
|
|
6069
|
-
* <p>The string value for an answer in a contact evaluation.</p>
|
|
6070
|
-
* @public
|
|
6071
|
-
*/
|
|
6072
|
-
interface StringValueMember {
|
|
6073
|
-
StringValue: string;
|
|
6074
|
-
NumericValue?: never;
|
|
6075
|
-
NotApplicable?: never;
|
|
6076
|
-
$unknown?: never;
|
|
6077
|
-
}
|
|
6078
|
-
/**
|
|
6079
|
-
* <p>The numeric value for an answer in a contact evaluation.</p>
|
|
6080
|
-
* @public
|
|
6081
|
-
*/
|
|
6082
|
-
interface NumericValueMember {
|
|
6083
|
-
StringValue?: never;
|
|
6084
|
-
NumericValue: number;
|
|
6085
|
-
NotApplicable?: never;
|
|
6086
|
-
$unknown?: never;
|
|
6087
|
-
}
|
|
6088
|
-
/**
|
|
6089
|
-
* <p>The flag to mark the question as not applicable.</p>
|
|
6090
|
-
* @public
|
|
6091
|
-
*/
|
|
6092
|
-
interface NotApplicableMember {
|
|
6093
|
-
StringValue?: never;
|
|
6094
|
-
NumericValue?: never;
|
|
6095
|
-
NotApplicable: boolean;
|
|
6096
|
-
$unknown?: never;
|
|
6097
|
-
}
|
|
6098
|
-
/**
|
|
6099
|
-
* @public
|
|
6100
|
-
*/
|
|
6101
|
-
interface $UnknownMember {
|
|
6102
|
-
StringValue?: never;
|
|
6103
|
-
NumericValue?: never;
|
|
6104
|
-
NotApplicable?: never;
|
|
6105
|
-
$unknown: [string, any];
|
|
6106
|
-
}
|
|
6107
|
-
interface Visitor<T> {
|
|
6108
|
-
StringValue: (value: string) => T;
|
|
6109
|
-
NumericValue: (value: number) => T;
|
|
6110
|
-
NotApplicable: (value: boolean) => T;
|
|
6111
|
-
_: (name: string, value: any) => T;
|
|
6112
|
-
}
|
|
6113
|
-
const visit: <T>(value: EvaluationAnswerData, visitor: Visitor<T>) => T;
|
|
6114
|
-
}
|
|
6115
|
-
/**
|
|
6116
|
-
* <p>Information about output answers for a contact evaluation.</p>
|
|
6117
|
-
* @public
|
|
6118
|
-
*/
|
|
6119
|
-
export interface EvaluationAnswerOutput {
|
|
6120
|
-
/**
|
|
6121
|
-
* <p>The value for an answer in a contact evaluation.</p>
|
|
6122
|
-
* @public
|
|
6123
|
-
*/
|
|
6124
|
-
Value?: EvaluationAnswerData;
|
|
6125
|
-
/**
|
|
6126
|
-
* <p>The system suggested value for an answer in a contact evaluation.</p>
|
|
6127
|
-
* @public
|
|
6128
|
-
*/
|
|
6129
|
-
SystemSuggestedValue?: EvaluationAnswerData;
|
|
6130
|
-
}
|
|
6131
6126
|
/**
|
|
6132
6127
|
* @internal
|
|
6133
6128
|
*/
|
|
@@ -1,6 +1,131 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { ConnectServiceException as __BaseException } from "./ConnectServiceException";
|
|
3
|
-
import { ActionSummary, AgentAvailabilityTimer, AgentConfig, AgentContactReference, AgentStatusReference, AgentStatusSummary, AgentStatusType, AnalyticsDataAssociationResult, Application, Channel, ContactFlowStatus, ContactFlowType, ContactState, CreatedByInfo, DirectoryType, Distribution,
|
|
3
|
+
import { ActionSummary, AgentAvailabilityTimer, AgentConfig, AgentContactReference, AgentStatusReference, AgentStatusSummary, AgentStatusType, AnalyticsDataAssociationResult, Application, Channel, ContactFlowStatus, ContactFlowType, ContactState, CreatedByInfo, DirectoryType, Distribution, EventSourceName, FileStatusType, FileUseCaseType, FlowAssociationResourceType, FlowAssociationSummary, HoursOfOperationConfig, InstanceStorageConfig, InstanceStorageResourceType, IntegrationType, LexBot, LexV2Bot, ListFlowAssociationResourceType, MediaConcurrency, OutboundCallerConfig, ParticipantRole, PredefinedAttributeValues, QueueReference, QuickConnectConfig, QuickConnectType, ReferenceType, RoutingProfileQueueReference, RuleAction, RulePublishStatus, RuleTriggerEventSource, SourceType, TaskTemplateConstraints, TaskTemplateDefaults, TaskTemplateField, TaskTemplateStatus, UserIdentityInfo, UserPhoneConfig, View, VocabularyLanguageCode, VocabularyState } from "./models_0";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
* @enum
|
|
7
|
+
*/
|
|
8
|
+
export declare const RoutingCriteriaStepStatus: {
|
|
9
|
+
readonly ACTIVE: "ACTIVE";
|
|
10
|
+
readonly EXPIRED: "EXPIRED";
|
|
11
|
+
readonly INACTIVE: "INACTIVE";
|
|
12
|
+
readonly JOINED: "JOINED";
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
export type RoutingCriteriaStepStatus = (typeof RoutingCriteriaStepStatus)[keyof typeof RoutingCriteriaStepStatus];
|
|
18
|
+
/**
|
|
19
|
+
* <p>A value for a segment attribute. This is structured as a map where the key is
|
|
20
|
+
* <code>valueString</code> and the value is a string.</p>
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
export interface SegmentAttributeValue {
|
|
24
|
+
/**
|
|
25
|
+
* <p>The value of a segment attribute.</p>
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
ValueString?: string;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* <p>Information about Amazon Connect Wisdom.</p>
|
|
32
|
+
* @public
|
|
33
|
+
*/
|
|
34
|
+
export interface WisdomInfo {
|
|
35
|
+
/**
|
|
36
|
+
* <p>The Amazon Resource Name (ARN) of the Wisdom session.</p>
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
SessionArn?: string;
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
export interface DescribeContactEvaluationRequest {
|
|
45
|
+
/**
|
|
46
|
+
* <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
InstanceId: string | undefined;
|
|
50
|
+
/**
|
|
51
|
+
* <p>A unique identifier for the contact evaluation.</p>
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
54
|
+
EvaluationId: string | undefined;
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* <p>Information about answer data for a contact evaluation. Answer data must be either string,
|
|
58
|
+
* numeric, or not applicable.</p>
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
export type EvaluationAnswerData = EvaluationAnswerData.NotApplicableMember | EvaluationAnswerData.NumericValueMember | EvaluationAnswerData.StringValueMember | EvaluationAnswerData.$UnknownMember;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
65
|
+
export declare namespace EvaluationAnswerData {
|
|
66
|
+
/**
|
|
67
|
+
* <p>The string value for an answer in a contact evaluation.</p>
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
70
|
+
interface StringValueMember {
|
|
71
|
+
StringValue: string;
|
|
72
|
+
NumericValue?: never;
|
|
73
|
+
NotApplicable?: never;
|
|
74
|
+
$unknown?: never;
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* <p>The numeric value for an answer in a contact evaluation.</p>
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
80
|
+
interface NumericValueMember {
|
|
81
|
+
StringValue?: never;
|
|
82
|
+
NumericValue: number;
|
|
83
|
+
NotApplicable?: never;
|
|
84
|
+
$unknown?: never;
|
|
85
|
+
}
|
|
86
|
+
/**
|
|
87
|
+
* <p>The flag to mark the question as not applicable.</p>
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
90
|
+
interface NotApplicableMember {
|
|
91
|
+
StringValue?: never;
|
|
92
|
+
NumericValue?: never;
|
|
93
|
+
NotApplicable: boolean;
|
|
94
|
+
$unknown?: never;
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
* @public
|
|
98
|
+
*/
|
|
99
|
+
interface $UnknownMember {
|
|
100
|
+
StringValue?: never;
|
|
101
|
+
NumericValue?: never;
|
|
102
|
+
NotApplicable?: never;
|
|
103
|
+
$unknown: [string, any];
|
|
104
|
+
}
|
|
105
|
+
interface Visitor<T> {
|
|
106
|
+
StringValue: (value: string) => T;
|
|
107
|
+
NumericValue: (value: number) => T;
|
|
108
|
+
NotApplicable: (value: boolean) => T;
|
|
109
|
+
_: (name: string, value: any) => T;
|
|
110
|
+
}
|
|
111
|
+
const visit: <T>(value: EvaluationAnswerData, visitor: Visitor<T>) => T;
|
|
112
|
+
}
|
|
113
|
+
/**
|
|
114
|
+
* <p>Information about output answers for a contact evaluation.</p>
|
|
115
|
+
* @public
|
|
116
|
+
*/
|
|
117
|
+
export interface EvaluationAnswerOutput {
|
|
118
|
+
/**
|
|
119
|
+
* <p>The value for an answer in a contact evaluation.</p>
|
|
120
|
+
* @public
|
|
121
|
+
*/
|
|
122
|
+
Value?: EvaluationAnswerData;
|
|
123
|
+
/**
|
|
124
|
+
* <p>The system suggested value for an answer in a contact evaluation.</p>
|
|
125
|
+
* @public
|
|
126
|
+
*/
|
|
127
|
+
SystemSuggestedValue?: EvaluationAnswerData;
|
|
128
|
+
}
|
|
4
129
|
/**
|
|
5
130
|
* <p>Information about scores of a contact evaluation item (section or question).</p>
|
|
6
131
|
* @public
|
|
@@ -4531,7 +4656,8 @@ export interface GetMetricDataV2Request {
|
|
|
4531
4656
|
* <p>Threshold: For <code>ThresholdValue</code>, enter any whole number from 1 to 604800
|
|
4532
4657
|
* (inclusive), in seconds. For <code>Comparison</code>, you must enter <code>LT</code> (for
|
|
4533
4658
|
* "Less than").</p>
|
|
4534
|
-
* <p>UI name:
|
|
4659
|
+
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-removed-historical">Contacts removed from queue in X seconds</a>
|
|
4660
|
+
* </p>
|
|
4535
4661
|
* </dd>
|
|
4536
4662
|
* <dt>CONTACTS_RESOLVED_IN_X</dt>
|
|
4537
4663
|
* <dd>
|
|
@@ -8542,122 +8668,6 @@ export interface ListTrafficDistributionGroupsResponse {
|
|
|
8542
8668
|
*/
|
|
8543
8669
|
TrafficDistributionGroupSummaryList?: TrafficDistributionGroupSummary[];
|
|
8544
8670
|
}
|
|
8545
|
-
/**
|
|
8546
|
-
* @public
|
|
8547
|
-
*/
|
|
8548
|
-
export interface ListTrafficDistributionGroupUsersRequest {
|
|
8549
|
-
/**
|
|
8550
|
-
* <p>The identifier of the traffic distribution group.
|
|
8551
|
-
* This can be the ID or the ARN if the API is being called in the Region where the traffic distribution group was created.
|
|
8552
|
-
* The ARN must be provided if the call is from the replicated Region.</p>
|
|
8553
|
-
* @public
|
|
8554
|
-
*/
|
|
8555
|
-
TrafficDistributionGroupId: string | undefined;
|
|
8556
|
-
/**
|
|
8557
|
-
* <p>The maximum number of results to return per page.</p>
|
|
8558
|
-
* @public
|
|
8559
|
-
*/
|
|
8560
|
-
MaxResults?: number;
|
|
8561
|
-
/**
|
|
8562
|
-
* <p>The token for the next set of results. Use the value returned in the previous
|
|
8563
|
-
* response in the next request to retrieve the next set of results.</p>
|
|
8564
|
-
* @public
|
|
8565
|
-
*/
|
|
8566
|
-
NextToken?: string;
|
|
8567
|
-
}
|
|
8568
|
-
/**
|
|
8569
|
-
* <p>Summary information about a traffic distribution group user.</p>
|
|
8570
|
-
* @public
|
|
8571
|
-
*/
|
|
8572
|
-
export interface TrafficDistributionGroupUserSummary {
|
|
8573
|
-
/**
|
|
8574
|
-
* <p>The identifier for the user. This can be the ID or the ARN of the user.</p>
|
|
8575
|
-
* @public
|
|
8576
|
-
*/
|
|
8577
|
-
UserId?: string;
|
|
8578
|
-
}
|
|
8579
|
-
/**
|
|
8580
|
-
* @public
|
|
8581
|
-
*/
|
|
8582
|
-
export interface ListTrafficDistributionGroupUsersResponse {
|
|
8583
|
-
/**
|
|
8584
|
-
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
8585
|
-
* @public
|
|
8586
|
-
*/
|
|
8587
|
-
NextToken?: string;
|
|
8588
|
-
/**
|
|
8589
|
-
* <p>A list of traffic distribution group users.</p>
|
|
8590
|
-
* @public
|
|
8591
|
-
*/
|
|
8592
|
-
TrafficDistributionGroupUserSummaryList?: TrafficDistributionGroupUserSummary[];
|
|
8593
|
-
}
|
|
8594
|
-
/**
|
|
8595
|
-
* <p>Provides summary information about the use cases for the specified integration
|
|
8596
|
-
* association.</p>
|
|
8597
|
-
* @public
|
|
8598
|
-
*/
|
|
8599
|
-
export interface ListUseCasesRequest {
|
|
8600
|
-
/**
|
|
8601
|
-
* <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
|
|
8602
|
-
* @public
|
|
8603
|
-
*/
|
|
8604
|
-
InstanceId: string | undefined;
|
|
8605
|
-
/**
|
|
8606
|
-
* <p>The identifier for the integration association.</p>
|
|
8607
|
-
* @public
|
|
8608
|
-
*/
|
|
8609
|
-
IntegrationAssociationId: string | undefined;
|
|
8610
|
-
/**
|
|
8611
|
-
* <p>The token for the next set of results. Use the value returned in the previous
|
|
8612
|
-
* response in the next request to retrieve the next set of results.</p>
|
|
8613
|
-
* @public
|
|
8614
|
-
*/
|
|
8615
|
-
NextToken?: string;
|
|
8616
|
-
/**
|
|
8617
|
-
* <p>The maximum number of results to return per page.</p>
|
|
8618
|
-
* @public
|
|
8619
|
-
*/
|
|
8620
|
-
MaxResults?: number;
|
|
8621
|
-
}
|
|
8622
|
-
/**
|
|
8623
|
-
* <p>Contains the
|
|
8624
|
-
* use
|
|
8625
|
-
* case.</p>
|
|
8626
|
-
* @public
|
|
8627
|
-
*/
|
|
8628
|
-
export interface UseCase {
|
|
8629
|
-
/**
|
|
8630
|
-
* <p>The identifier for the use case.</p>
|
|
8631
|
-
* @public
|
|
8632
|
-
*/
|
|
8633
|
-
UseCaseId?: string;
|
|
8634
|
-
/**
|
|
8635
|
-
* <p>The Amazon Resource Name (ARN) for the use case.</p>
|
|
8636
|
-
* @public
|
|
8637
|
-
*/
|
|
8638
|
-
UseCaseArn?: string;
|
|
8639
|
-
/**
|
|
8640
|
-
* <p>The type of use case to associate to the integration association. Each integration
|
|
8641
|
-
* association can have only one of each use case type.</p>
|
|
8642
|
-
* @public
|
|
8643
|
-
*/
|
|
8644
|
-
UseCaseType?: UseCaseType;
|
|
8645
|
-
}
|
|
8646
|
-
/**
|
|
8647
|
-
* @public
|
|
8648
|
-
*/
|
|
8649
|
-
export interface ListUseCasesResponse {
|
|
8650
|
-
/**
|
|
8651
|
-
* <p>The use cases.</p>
|
|
8652
|
-
* @public
|
|
8653
|
-
*/
|
|
8654
|
-
UseCaseSummaryList?: UseCase[];
|
|
8655
|
-
/**
|
|
8656
|
-
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
8657
|
-
* @public
|
|
8658
|
-
*/
|
|
8659
|
-
NextToken?: string;
|
|
8660
|
-
}
|
|
8661
8671
|
/**
|
|
8662
8672
|
* @internal
|
|
8663
8673
|
*/
|