@aws-sdk/client-connect 3.787.0 → 3.796.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/dist-cjs/index.js +60 -5
- package/dist-es/models/models_0.js +8 -0
- package/dist-es/models/models_1.js +0 -4
- package/dist-es/models/models_2.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +47 -0
- package/dist-types/commands/CreateContactCommand.d.ts +3 -3
- package/dist-types/commands/CreateRuleCommand.d.ts +19 -2
- package/dist-types/commands/DeletePushNotificationRegistrationCommand.d.ts +2 -1
- package/dist-types/commands/DeleteQueueCommand.d.ts +1 -1
- package/dist-types/commands/DeleteQuickConnectCommand.d.ts +1 -1
- package/dist-types/commands/DeleteRoutingProfileCommand.d.ts +1 -1
- package/dist-types/commands/DescribeRuleCommand.d.ts +19 -2
- package/dist-types/commands/ListQueueQuickConnectsCommand.d.ts +2 -1
- package/dist-types/commands/ListQueuesCommand.d.ts +1 -2
- package/dist-types/commands/ListRulesCommand.d.ts +3 -3
- package/dist-types/commands/SuspendContactRecordingCommand.d.ts +7 -6
- package/dist-types/commands/TransferContactCommand.d.ts +1 -1
- package/dist-types/commands/UpdateQueueOutboundEmailConfigCommand.d.ts +1 -1
- package/dist-types/commands/UpdateQueueStatusCommand.d.ts +1 -1
- package/dist-types/commands/UpdateQuickConnectConfigCommand.d.ts +1 -1
- package/dist-types/commands/UpdateQuickConnectNameCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRuleCommand.d.ts +18 -1
- package/dist-types/models/models_0.d.ts +77 -50
- package/dist-types/models/models_1.d.ts +54 -102
- package/dist-types/models/models_2.d.ts +108 -89
- package/dist-types/models/models_3.d.ts +101 -9
- package/dist-types/ts3.4/commands/DeletePushNotificationRegistrationCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteQuickConnectCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteRoutingProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListQueueQuickConnectsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/UpdateQueueOutboundEmailConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateQueueStatusCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateQuickConnectConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateQuickConnectNameCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +23 -13
- package/dist-types/ts3.4/models/models_1.d.ts +13 -26
- package/dist-types/ts3.4/models/models_2.d.ts +25 -26
- package/dist-types/ts3.4/models/models_3.d.ts +24 -0
- package/package.json +5 -5
|
@@ -19,6 +19,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
19
19
|
*/
|
|
20
20
|
export declare const ActionType: {
|
|
21
21
|
readonly ASSIGN_CONTACT_CATEGORY: "ASSIGN_CONTACT_CATEGORY";
|
|
22
|
+
readonly ASSIGN_SLA: "ASSIGN_SLA";
|
|
22
23
|
readonly CREATE_CASE: "CREATE_CASE";
|
|
23
24
|
readonly CREATE_TASK: "CREATE_TASK";
|
|
24
25
|
readonly END_ASSOCIATED_TASKS: "END_ASSOCIATED_TASKS";
|
|
@@ -4528,6 +4529,76 @@ export interface FieldValueUnion {
|
|
|
4528
4529
|
*/
|
|
4529
4530
|
StringValue?: string | undefined;
|
|
4530
4531
|
}
|
|
4532
|
+
/**
|
|
4533
|
+
* @public
|
|
4534
|
+
* @enum
|
|
4535
|
+
*/
|
|
4536
|
+
export declare const SlaType: {
|
|
4537
|
+
readonly CASE_FIELD: "CaseField";
|
|
4538
|
+
};
|
|
4539
|
+
/**
|
|
4540
|
+
* @public
|
|
4541
|
+
*/
|
|
4542
|
+
export type SlaType = (typeof SlaType)[keyof typeof SlaType];
|
|
4543
|
+
/**
|
|
4544
|
+
* <p>The SLA configuration for Case SlaAssignmentType.</p>
|
|
4545
|
+
* @public
|
|
4546
|
+
*/
|
|
4547
|
+
export interface CaseSlaConfiguration {
|
|
4548
|
+
/**
|
|
4549
|
+
* <p>Name of an SLA.</p>
|
|
4550
|
+
* @public
|
|
4551
|
+
*/
|
|
4552
|
+
Name: string | undefined;
|
|
4553
|
+
/**
|
|
4554
|
+
* <p>Type of SLA for Case SlaAssignmentType.</p>
|
|
4555
|
+
* @public
|
|
4556
|
+
*/
|
|
4557
|
+
Type: SlaType | undefined;
|
|
4558
|
+
/**
|
|
4559
|
+
* <p>Unique identifier of a Case field.</p>
|
|
4560
|
+
* @public
|
|
4561
|
+
*/
|
|
4562
|
+
FieldId?: string | undefined;
|
|
4563
|
+
/**
|
|
4564
|
+
* <p>Represents a list of target field values for the fieldId specified in CaseSlaConfiguration.
|
|
4565
|
+
* The SLA is considered met if any one of these target field values matches the actual field value.</p>
|
|
4566
|
+
* @public
|
|
4567
|
+
*/
|
|
4568
|
+
TargetFieldValues?: FieldValueUnion[] | undefined;
|
|
4569
|
+
/**
|
|
4570
|
+
* <p>Target duration in minutes within which an SLA should be completed.</p>
|
|
4571
|
+
* @public
|
|
4572
|
+
*/
|
|
4573
|
+
TargetSlaMinutes: number | undefined;
|
|
4574
|
+
}
|
|
4575
|
+
/**
|
|
4576
|
+
* @public
|
|
4577
|
+
* @enum
|
|
4578
|
+
*/
|
|
4579
|
+
export declare const SlaAssignmentType: {
|
|
4580
|
+
readonly CASES: "CASES";
|
|
4581
|
+
};
|
|
4582
|
+
/**
|
|
4583
|
+
* @public
|
|
4584
|
+
*/
|
|
4585
|
+
export type SlaAssignmentType = (typeof SlaAssignmentType)[keyof typeof SlaAssignmentType];
|
|
4586
|
+
/**
|
|
4587
|
+
* <p>The AssignSla action definition.</p>
|
|
4588
|
+
* @public
|
|
4589
|
+
*/
|
|
4590
|
+
export interface AssignSlaActionDefinition {
|
|
4591
|
+
/**
|
|
4592
|
+
* <p>Type of SLA assignment.</p>
|
|
4593
|
+
* @public
|
|
4594
|
+
*/
|
|
4595
|
+
SlaAssignmentType: SlaAssignmentType | undefined;
|
|
4596
|
+
/**
|
|
4597
|
+
* <p>The SLA configuration for Case SLA Assignment.</p>
|
|
4598
|
+
* @public
|
|
4599
|
+
*/
|
|
4600
|
+
CaseSlaConfiguration?: CaseSlaConfiguration | undefined;
|
|
4601
|
+
}
|
|
4531
4602
|
/**
|
|
4532
4603
|
* <p>Object for case field values.</p>
|
|
4533
4604
|
* @public
|
|
@@ -4769,6 +4840,11 @@ export interface RuleAction {
|
|
|
4769
4840
|
* @public
|
|
4770
4841
|
*/
|
|
4771
4842
|
UpdateCaseAction?: UpdateCaseActionDefinition | undefined;
|
|
4843
|
+
/**
|
|
4844
|
+
* <p>Information about the assign SLA action.</p>
|
|
4845
|
+
* @public
|
|
4846
|
+
*/
|
|
4847
|
+
AssignSlaAction?: AssignSlaActionDefinition | undefined;
|
|
4772
4848
|
/**
|
|
4773
4849
|
* <p>Information about the end associated tasks action.</p>
|
|
4774
4850
|
* <p>Supported only for <code>TriggerEventSource</code> values: <code>OnCaseUpdate</code>.</p>
|
|
@@ -4807,6 +4883,7 @@ export declare const EventSourceName: {
|
|
|
4807
4883
|
readonly OnRealTimeCallAnalysisAvailable: "OnRealTimeCallAnalysisAvailable";
|
|
4808
4884
|
readonly OnRealTimeChatAnalysisAvailable: "OnRealTimeChatAnalysisAvailable";
|
|
4809
4885
|
readonly OnSalesforceCaseCreate: "OnSalesforceCaseCreate";
|
|
4886
|
+
readonly OnSlaBreach: "OnSlaBreach";
|
|
4810
4887
|
readonly OnZendeskTicketCreate: "OnZendeskTicketCreate";
|
|
4811
4888
|
readonly OnZendeskTicketStatusUpdate: "OnZendeskTicketStatusUpdate";
|
|
4812
4889
|
};
|
|
@@ -6285,56 +6362,6 @@ export interface DeletePushNotificationRegistrationRequest {
|
|
|
6285
6362
|
*/
|
|
6286
6363
|
ContactId: string | undefined;
|
|
6287
6364
|
}
|
|
6288
|
-
/**
|
|
6289
|
-
* @public
|
|
6290
|
-
*/
|
|
6291
|
-
export interface DeletePushNotificationRegistrationResponse {
|
|
6292
|
-
}
|
|
6293
|
-
/**
|
|
6294
|
-
* @public
|
|
6295
|
-
*/
|
|
6296
|
-
export interface DeleteQueueRequest {
|
|
6297
|
-
/**
|
|
6298
|
-
* <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>
|
|
6299
|
-
* @public
|
|
6300
|
-
*/
|
|
6301
|
-
InstanceId: string | undefined;
|
|
6302
|
-
/**
|
|
6303
|
-
* <p>The identifier for the queue.</p>
|
|
6304
|
-
* @public
|
|
6305
|
-
*/
|
|
6306
|
-
QueueId: string | undefined;
|
|
6307
|
-
}
|
|
6308
|
-
/**
|
|
6309
|
-
* @public
|
|
6310
|
-
*/
|
|
6311
|
-
export interface DeleteQuickConnectRequest {
|
|
6312
|
-
/**
|
|
6313
|
-
* <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>
|
|
6314
|
-
* @public
|
|
6315
|
-
*/
|
|
6316
|
-
InstanceId: string | undefined;
|
|
6317
|
-
/**
|
|
6318
|
-
* <p>The identifier for the quick connect.</p>
|
|
6319
|
-
* @public
|
|
6320
|
-
*/
|
|
6321
|
-
QuickConnectId: string | undefined;
|
|
6322
|
-
}
|
|
6323
|
-
/**
|
|
6324
|
-
* @public
|
|
6325
|
-
*/
|
|
6326
|
-
export interface DeleteRoutingProfileRequest {
|
|
6327
|
-
/**
|
|
6328
|
-
* <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>
|
|
6329
|
-
* @public
|
|
6330
|
-
*/
|
|
6331
|
-
InstanceId: string | undefined;
|
|
6332
|
-
/**
|
|
6333
|
-
* <p>The identifier of the routing profile.</p>
|
|
6334
|
-
* @public
|
|
6335
|
-
*/
|
|
6336
|
-
RoutingProfileId: string | undefined;
|
|
6337
|
-
}
|
|
6338
6365
|
/**
|
|
6339
6366
|
* @internal
|
|
6340
6367
|
*/
|
|
@@ -1,6 +1,56 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { ConnectServiceException as __BaseException } from "./ConnectServiceException";
|
|
3
|
-
import { AgentAvailabilityTimer, AgentConfig, AgentContactReference, AgentQualityMetrics, AgentsCriteria, AgentStatus, AgentStatusReference, AgentStatusSummary, AgentStatusType, AnalyticsDataAssociationResult, AudioQualityMetricsInfo, Channel, ContactFlowStatus, ContactFlowType, ContactInitiationMethod, ContactState, CreatedByInfo, DeviceInfo, DirectoryType, Distribution, EndpointType, FileStatusType, FileUseCaseType, FlowAssociationResourceType, FlowAssociationSummary, HoursOfOperationConfig, HoursOfOperationOverrideConfig, InstanceStorageConfig, InstanceStorageResourceType, IntegrationType, LexBot, LexV2Bot, ListFlowAssociationResourceType, MediaConcurrency, OutboundCallerConfig, OutboundEmailConfig, OverrideTimeSlice, ParticipantCapabilities, PredefinedAttributeValues, QueueReference, QuickConnectConfig,
|
|
3
|
+
import { AgentAvailabilityTimer, AgentConfig, AgentContactReference, AgentQualityMetrics, AgentsCriteria, AgentStatus, AgentStatusReference, AgentStatusSummary, AgentStatusType, AnalyticsDataAssociationResult, AudioQualityMetricsInfo, Channel, ContactFlowStatus, ContactFlowType, ContactInitiationMethod, ContactState, CreatedByInfo, DeviceInfo, DirectoryType, Distribution, EndpointType, FileStatusType, FileUseCaseType, FlowAssociationResourceType, FlowAssociationSummary, HoursOfOperationConfig, HoursOfOperationOverrideConfig, InstanceStorageConfig, InstanceStorageResourceType, IntegrationType, LexBot, LexV2Bot, ListFlowAssociationResourceType, MediaConcurrency, OutboundCallerConfig, OutboundEmailConfig, OverrideTimeSlice, ParticipantCapabilities, PredefinedAttributeValues, QueueReference, QuickConnectConfig, ReferenceStatus, ReferenceType, RoutingProfileQueueReference, RuleAction, RulePublishStatus, RuleTriggerEventSource, SourceType, TaskTemplateConstraints, TaskTemplateDefaults, TaskTemplateField, TaskTemplateStatus, UserIdentityInfo, UserPhoneConfig, View, VocabularyLanguageCode, VocabularyState } from "./models_0";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface DeletePushNotificationRegistrationResponse {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
export interface DeleteQueueRequest {
|
|
13
|
+
/**
|
|
14
|
+
* <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>
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
InstanceId: string | undefined;
|
|
18
|
+
/**
|
|
19
|
+
* <p>The identifier for the queue.</p>
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
22
|
+
QueueId: string | undefined;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
export interface DeleteQuickConnectRequest {
|
|
28
|
+
/**
|
|
29
|
+
* <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>
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
InstanceId: string | undefined;
|
|
33
|
+
/**
|
|
34
|
+
* <p>The identifier for the quick connect.</p>
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
37
|
+
QuickConnectId: string | undefined;
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
42
|
+
export interface DeleteRoutingProfileRequest {
|
|
43
|
+
/**
|
|
44
|
+
* <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>
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
InstanceId: string | undefined;
|
|
48
|
+
/**
|
|
49
|
+
* <p>The identifier of the routing profile.</p>
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
52
|
+
RoutingProfileId: string | undefined;
|
|
53
|
+
}
|
|
4
54
|
/**
|
|
5
55
|
* @public
|
|
6
56
|
*/
|
|
@@ -6805,7 +6855,9 @@ export interface AssociatedContactSummary {
|
|
|
6805
6855
|
*/
|
|
6806
6856
|
InitiationTimestamp?: Date | undefined;
|
|
6807
6857
|
/**
|
|
6808
|
-
* <p>The
|
|
6858
|
+
* <p>The date and time that the customer endpoint disconnected from the current contact, in UTC
|
|
6859
|
+
* time. In transfer scenarios, the DisconnectTimestamp of the previous contact indicates the date
|
|
6860
|
+
* and time when that contact ended.</p>
|
|
6809
6861
|
* @public
|
|
6810
6862
|
*/
|
|
6811
6863
|
DisconnectTimestamp?: Date | undefined;
|
|
@@ -8721,106 +8773,6 @@ export interface ListQueueQuickConnectsRequest {
|
|
|
8721
8773
|
*/
|
|
8722
8774
|
MaxResults?: number | undefined;
|
|
8723
8775
|
}
|
|
8724
|
-
/**
|
|
8725
|
-
* <p>Contains summary information about a quick connect.</p>
|
|
8726
|
-
* @public
|
|
8727
|
-
*/
|
|
8728
|
-
export interface QuickConnectSummary {
|
|
8729
|
-
/**
|
|
8730
|
-
* <p>The identifier for the quick connect.</p>
|
|
8731
|
-
* @public
|
|
8732
|
-
*/
|
|
8733
|
-
Id?: string | undefined;
|
|
8734
|
-
/**
|
|
8735
|
-
* <p>The Amazon Resource Name (ARN) of the quick connect.</p>
|
|
8736
|
-
* @public
|
|
8737
|
-
*/
|
|
8738
|
-
Arn?: string | undefined;
|
|
8739
|
-
/**
|
|
8740
|
-
* <p>The name of the quick connect.</p>
|
|
8741
|
-
* @public
|
|
8742
|
-
*/
|
|
8743
|
-
Name?: string | undefined;
|
|
8744
|
-
/**
|
|
8745
|
-
* <p>The type of quick connect. In the Amazon Connect admin website, when you create a quick connect, you are
|
|
8746
|
-
* prompted to assign one of the following types: Agent (USER), External (PHONE_NUMBER), or Queue (QUEUE).</p>
|
|
8747
|
-
* @public
|
|
8748
|
-
*/
|
|
8749
|
-
QuickConnectType?: QuickConnectType | undefined;
|
|
8750
|
-
/**
|
|
8751
|
-
* <p>The timestamp when this resource was last modified.</p>
|
|
8752
|
-
* @public
|
|
8753
|
-
*/
|
|
8754
|
-
LastModifiedTime?: Date | undefined;
|
|
8755
|
-
/**
|
|
8756
|
-
* <p>The Amazon Web Services Region where this resource was last modified.</p>
|
|
8757
|
-
* @public
|
|
8758
|
-
*/
|
|
8759
|
-
LastModifiedRegion?: string | undefined;
|
|
8760
|
-
}
|
|
8761
|
-
/**
|
|
8762
|
-
* @public
|
|
8763
|
-
*/
|
|
8764
|
-
export interface ListQueueQuickConnectsResponse {
|
|
8765
|
-
/**
|
|
8766
|
-
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
8767
|
-
* @public
|
|
8768
|
-
*/
|
|
8769
|
-
NextToken?: string | undefined;
|
|
8770
|
-
/**
|
|
8771
|
-
* <p>Information about the quick connects.</p>
|
|
8772
|
-
* @public
|
|
8773
|
-
*/
|
|
8774
|
-
QuickConnectSummaryList?: QuickConnectSummary[] | undefined;
|
|
8775
|
-
/**
|
|
8776
|
-
* <p>The timestamp when this resource was last modified.</p>
|
|
8777
|
-
* @public
|
|
8778
|
-
*/
|
|
8779
|
-
LastModifiedTime?: Date | undefined;
|
|
8780
|
-
/**
|
|
8781
|
-
* <p>The Amazon Web Services Region where this resource was last modified.</p>
|
|
8782
|
-
* @public
|
|
8783
|
-
*/
|
|
8784
|
-
LastModifiedRegion?: string | undefined;
|
|
8785
|
-
}
|
|
8786
|
-
/**
|
|
8787
|
-
* @public
|
|
8788
|
-
* @enum
|
|
8789
|
-
*/
|
|
8790
|
-
export declare const QueueType: {
|
|
8791
|
-
readonly AGENT: "AGENT";
|
|
8792
|
-
readonly STANDARD: "STANDARD";
|
|
8793
|
-
};
|
|
8794
|
-
/**
|
|
8795
|
-
* @public
|
|
8796
|
-
*/
|
|
8797
|
-
export type QueueType = (typeof QueueType)[keyof typeof QueueType];
|
|
8798
|
-
/**
|
|
8799
|
-
* @public
|
|
8800
|
-
*/
|
|
8801
|
-
export interface ListQueuesRequest {
|
|
8802
|
-
/**
|
|
8803
|
-
* <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>
|
|
8804
|
-
* @public
|
|
8805
|
-
*/
|
|
8806
|
-
InstanceId: string | undefined;
|
|
8807
|
-
/**
|
|
8808
|
-
* <p>The type of queue.</p>
|
|
8809
|
-
* @public
|
|
8810
|
-
*/
|
|
8811
|
-
QueueTypes?: QueueType[] | undefined;
|
|
8812
|
-
/**
|
|
8813
|
-
* <p>The token for the next set of results. Use the value returned in the previous
|
|
8814
|
-
* response in the next request to retrieve the next set of results.</p>
|
|
8815
|
-
* @public
|
|
8816
|
-
*/
|
|
8817
|
-
NextToken?: string | undefined;
|
|
8818
|
-
/**
|
|
8819
|
-
* <p>The maximum number of results to return per page. The default MaxResult size is 100.</p>
|
|
8820
|
-
* @public
|
|
8821
|
-
*/
|
|
8822
|
-
MaxResults?: number | undefined;
|
|
8823
|
-
}
|
|
8824
8776
|
/**
|
|
8825
8777
|
* @internal
|
|
8826
8778
|
*/
|
|
@@ -1,7 +1,107 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { ConnectServiceException as __BaseException } from "./ConnectServiceException";
|
|
3
|
-
import { ActionSummary, AgentHierarchyGroups, AgentStatus, AgentStatusState, AllowedCapabilities, Application, Channel, ContactInitiationMethod, ControlPlaneAttributeFilter, CreatedByInfo, EventSourceName, FileStatusType, FileUseCaseType, HoursOfOperationConfig, HoursOfOperationOverrideConfig, InstanceStorageConfig, InstanceStorageResourceType, MonitorCapability, OutboundCallerConfig,
|
|
4
|
-
import { ContactFlow, ContactFlowModule, ContactFlowModuleState, ContactFlowState, EvaluationAnswerData, EvaluationNote, HierarchyGroup, HierarchyGroupSummary, HoursOfOperation, HoursOfOperationOverride, InstanceAttributeType, PhoneNumberCountryCode, PhoneNumberType, PredefinedAttribute, Prompt, Queue,
|
|
3
|
+
import { ActionSummary, AgentHierarchyGroups, AgentStatus, AgentStatusState, AllowedCapabilities, Application, Channel, ContactInitiationMethod, ControlPlaneAttributeFilter, CreatedByInfo, EventSourceName, FileStatusType, FileUseCaseType, HoursOfOperationConfig, HoursOfOperationOverrideConfig, InstanceStorageConfig, InstanceStorageResourceType, MonitorCapability, OutboundCallerConfig, ParticipantRole, PredefinedAttributeValues, QuickConnectType, Reference, RehydrationType, RulePublishStatus, StringComparisonType, StringCondition, TagCondition, TaskTemplateStatus, UseCaseType, UserPhoneConfig, UserProficiency, ViewStatus, ViewType, VocabularyLanguageCode, VocabularyState } from "./models_0";
|
|
4
|
+
import { ContactFlow, ContactFlowModule, ContactFlowModuleState, ContactFlowState, EvaluationAnswerData, EvaluationNote, HierarchyGroup, HierarchyGroupSummary, HoursOfOperation, HoursOfOperationOverride, InstanceAttributeType, PhoneNumberCountryCode, PhoneNumberType, PredefinedAttribute, Prompt, Queue, QuickConnect, RoutingProfile, SortOrder, TrafficDistributionGroupStatus } from "./models_1";
|
|
5
|
+
/**
|
|
6
|
+
* <p>Contains summary information about a quick connect.</p>
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export interface QuickConnectSummary {
|
|
10
|
+
/**
|
|
11
|
+
* <p>The identifier for the quick connect.</p>
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
Id?: string | undefined;
|
|
15
|
+
/**
|
|
16
|
+
* <p>The Amazon Resource Name (ARN) of the quick connect.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
Arn?: string | undefined;
|
|
20
|
+
/**
|
|
21
|
+
* <p>The name of the quick connect.</p>
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
Name?: string | undefined;
|
|
25
|
+
/**
|
|
26
|
+
* <p>The type of quick connect. In the Amazon Connect admin website, when you create a quick connect, you are
|
|
27
|
+
* prompted to assign one of the following types: Agent (USER), External (PHONE_NUMBER), or Queue (QUEUE).</p>
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
QuickConnectType?: QuickConnectType | undefined;
|
|
31
|
+
/**
|
|
32
|
+
* <p>The timestamp when this resource was last modified.</p>
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
LastModifiedTime?: Date | undefined;
|
|
36
|
+
/**
|
|
37
|
+
* <p>The Amazon Web Services Region where this resource was last modified.</p>
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
40
|
+
LastModifiedRegion?: string | undefined;
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
export interface ListQueueQuickConnectsResponse {
|
|
46
|
+
/**
|
|
47
|
+
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
NextToken?: string | undefined;
|
|
51
|
+
/**
|
|
52
|
+
* <p>Information about the quick connects.</p>
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
QuickConnectSummaryList?: QuickConnectSummary[] | undefined;
|
|
56
|
+
/**
|
|
57
|
+
* <p>The timestamp when this resource was last modified.</p>
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
60
|
+
LastModifiedTime?: Date | undefined;
|
|
61
|
+
/**
|
|
62
|
+
* <p>The Amazon Web Services Region where this resource was last modified.</p>
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
65
|
+
LastModifiedRegion?: string | undefined;
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
* @enum
|
|
70
|
+
*/
|
|
71
|
+
export declare const QueueType: {
|
|
72
|
+
readonly AGENT: "AGENT";
|
|
73
|
+
readonly STANDARD: "STANDARD";
|
|
74
|
+
};
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
export type QueueType = (typeof QueueType)[keyof typeof QueueType];
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
export interface ListQueuesRequest {
|
|
83
|
+
/**
|
|
84
|
+
* <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>
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
87
|
+
InstanceId: string | undefined;
|
|
88
|
+
/**
|
|
89
|
+
* <p>The type of queue.</p>
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
92
|
+
QueueTypes?: QueueType[] | undefined;
|
|
93
|
+
/**
|
|
94
|
+
* <p>The token for the next set of results. Use the value returned in the previous
|
|
95
|
+
* response in the next request to retrieve the next set of results.</p>
|
|
96
|
+
* @public
|
|
97
|
+
*/
|
|
98
|
+
NextToken?: string | undefined;
|
|
99
|
+
/**
|
|
100
|
+
* <p>The maximum number of results to return per page. The default MaxResult size is 100.</p>
|
|
101
|
+
* @public
|
|
102
|
+
*/
|
|
103
|
+
MaxResults?: number | undefined;
|
|
104
|
+
}
|
|
5
105
|
/**
|
|
6
106
|
* <p>Contains summary information about a queue.</p>
|
|
7
107
|
* @public
|
|
@@ -4207,6 +4307,9 @@ export interface SendOutboundEmailRequest {
|
|
|
4207
4307
|
EmailMessage: OutboundEmailContent | undefined;
|
|
4208
4308
|
/**
|
|
4209
4309
|
* <p>Denotes the class of traffic.</p>
|
|
4310
|
+
* <note>
|
|
4311
|
+
* <p>Only the CAMPAIGN traffic type is supported.</p>
|
|
4312
|
+
* </note>
|
|
4210
4313
|
* @public
|
|
4211
4314
|
*/
|
|
4212
4315
|
TrafficType: TrafficType | undefined;
|
|
@@ -4837,8 +4940,9 @@ export interface StartOutboundVoiceContactRequest {
|
|
|
4837
4940
|
*/
|
|
4838
4941
|
Name?: string | undefined;
|
|
4839
4942
|
/**
|
|
4840
|
-
* <p>A description of the voice contact that
|
|
4841
|
-
*
|
|
4943
|
+
* <p>A description of the voice contact that appears in the agent's snapshot in the CCP logs. For
|
|
4944
|
+
* more information about CCP logs, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/download-ccp-logs.html">Download and review CCP logs</a> in
|
|
4945
|
+
* the <i>Amazon Connect Administrator Guide</i>.</p>
|
|
4842
4946
|
* @public
|
|
4843
4947
|
*/
|
|
4844
4948
|
Description?: string | undefined;
|
|
@@ -6580,91 +6684,6 @@ export interface UpdateQueueOutboundCallerConfigRequest {
|
|
|
6580
6684
|
*/
|
|
6581
6685
|
OutboundCallerConfig: OutboundCallerConfig | undefined;
|
|
6582
6686
|
}
|
|
6583
|
-
/**
|
|
6584
|
-
* @public
|
|
6585
|
-
*/
|
|
6586
|
-
export interface UpdateQueueOutboundEmailConfigRequest {
|
|
6587
|
-
/**
|
|
6588
|
-
* <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>
|
|
6589
|
-
* @public
|
|
6590
|
-
*/
|
|
6591
|
-
InstanceId: string | undefined;
|
|
6592
|
-
/**
|
|
6593
|
-
* <p>The identifier for the queue.</p>
|
|
6594
|
-
* @public
|
|
6595
|
-
*/
|
|
6596
|
-
QueueId: string | undefined;
|
|
6597
|
-
/**
|
|
6598
|
-
* <p>The outbound email address ID for a specified queue.</p>
|
|
6599
|
-
* @public
|
|
6600
|
-
*/
|
|
6601
|
-
OutboundEmailConfig: OutboundEmailConfig | undefined;
|
|
6602
|
-
}
|
|
6603
|
-
/**
|
|
6604
|
-
* @public
|
|
6605
|
-
*/
|
|
6606
|
-
export interface UpdateQueueStatusRequest {
|
|
6607
|
-
/**
|
|
6608
|
-
* <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>
|
|
6609
|
-
* @public
|
|
6610
|
-
*/
|
|
6611
|
-
InstanceId: string | undefined;
|
|
6612
|
-
/**
|
|
6613
|
-
* <p>The identifier for the queue.</p>
|
|
6614
|
-
* @public
|
|
6615
|
-
*/
|
|
6616
|
-
QueueId: string | undefined;
|
|
6617
|
-
/**
|
|
6618
|
-
* <p>The status of the queue.</p>
|
|
6619
|
-
* @public
|
|
6620
|
-
*/
|
|
6621
|
-
Status: QueueStatus | undefined;
|
|
6622
|
-
}
|
|
6623
|
-
/**
|
|
6624
|
-
* @public
|
|
6625
|
-
*/
|
|
6626
|
-
export interface UpdateQuickConnectConfigRequest {
|
|
6627
|
-
/**
|
|
6628
|
-
* <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>
|
|
6629
|
-
* @public
|
|
6630
|
-
*/
|
|
6631
|
-
InstanceId: string | undefined;
|
|
6632
|
-
/**
|
|
6633
|
-
* <p>The identifier for the quick connect.</p>
|
|
6634
|
-
* @public
|
|
6635
|
-
*/
|
|
6636
|
-
QuickConnectId: string | undefined;
|
|
6637
|
-
/**
|
|
6638
|
-
* <p>Information about the configuration settings for the quick connect.</p>
|
|
6639
|
-
* @public
|
|
6640
|
-
*/
|
|
6641
|
-
QuickConnectConfig: QuickConnectConfig | undefined;
|
|
6642
|
-
}
|
|
6643
|
-
/**
|
|
6644
|
-
* @public
|
|
6645
|
-
*/
|
|
6646
|
-
export interface UpdateQuickConnectNameRequest {
|
|
6647
|
-
/**
|
|
6648
|
-
* <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>
|
|
6649
|
-
* @public
|
|
6650
|
-
*/
|
|
6651
|
-
InstanceId: string | undefined;
|
|
6652
|
-
/**
|
|
6653
|
-
* <p>The identifier for the quick connect.</p>
|
|
6654
|
-
* @public
|
|
6655
|
-
*/
|
|
6656
|
-
QuickConnectId: string | undefined;
|
|
6657
|
-
/**
|
|
6658
|
-
* <p>The name of the quick connect.</p>
|
|
6659
|
-
* @public
|
|
6660
|
-
*/
|
|
6661
|
-
Name?: string | undefined;
|
|
6662
|
-
/**
|
|
6663
|
-
* <p>The description of the quick connect.</p>
|
|
6664
|
-
* @public
|
|
6665
|
-
*/
|
|
6666
|
-
Description?: string | undefined;
|
|
6667
|
-
}
|
|
6668
6687
|
/**
|
|
6669
6688
|
* @internal
|
|
6670
6689
|
*/
|