@aws-sdk/client-connect 3.986.0 → 3.988.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 +7 -0
- package/dist-cjs/index.js +400 -12758
- package/dist-cjs/models/ConnectServiceException.js +12 -0
- package/dist-cjs/models/errors.js +434 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +10615 -0
- package/dist-es/Connect.js +2 -0
- package/dist-es/commands/UpdateUserConfigCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/enums.js +11 -6
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +296 -218
- package/dist-types/Connect.d.ts +7 -0
- package/dist-types/ConnectClient.d.ts +3 -2
- package/dist-types/commands/CreateUserCommand.d.ts +64 -1
- package/dist-types/commands/CreateWorkspaceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeUserCommand.d.ts +38 -1
- package/dist-types/commands/ListAgentStatusesCommand.d.ts +1 -1
- package/dist-types/commands/ListAnalyticsDataAssociationsCommand.d.ts +1 -1
- package/dist-types/commands/ListAnalyticsDataLakeDataSetsCommand.d.ts +1 -2
- package/dist-types/commands/SearchUsersCommand.d.ts +38 -1
- package/dist-types/commands/SearchWorkspaceAssociationsCommand.d.ts +1 -2
- package/dist-types/commands/SearchWorkspacesCommand.d.ts +1 -2
- package/dist-types/commands/UpdateUserConfigCommand.d.ts +131 -0
- package/dist-types/commands/UpdateUserPhoneConfigCommand.d.ts +4 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +27 -14
- package/dist-types/models/models_0.d.ts +138 -115
- package/dist-types/models/models_1.d.ts +138 -124
- package/dist-types/models/models_2.d.ts +150 -166
- package/dist-types/models/models_3.d.ts +206 -3
- package/dist-types/schemas/schemas_0.d.ts +43 -28
- package/dist-types/ts3.4/Connect.d.ts +17 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/CreateWorkspaceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAgentStatusesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAnalyticsDataAssociationsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAnalyticsDataLakeDataSetsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/SearchWorkspaceAssociationsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/SearchWorkspacesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdateUserConfigCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +14 -7
- package/dist-types/ts3.4/models/models_0.d.ts +34 -30
- package/dist-types/ts3.4/models/models_1.d.ts +40 -33
- package/dist-types/ts3.4/models/models_2.d.ts +42 -36
- package/dist-types/ts3.4/models/models_3.d.ts +50 -3
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +38 -28
- package/package.json +13 -13
|
@@ -28,6 +28,20 @@ export declare const ActionType: {
|
|
|
28
28
|
* @public
|
|
29
29
|
*/
|
|
30
30
|
export type ActionType = (typeof ActionType)[keyof typeof ActionType];
|
|
31
|
+
/**
|
|
32
|
+
* @public
|
|
33
|
+
* @enum
|
|
34
|
+
*/
|
|
35
|
+
export declare const Channel: {
|
|
36
|
+
readonly CHAT: "CHAT";
|
|
37
|
+
readonly EMAIL: "EMAIL";
|
|
38
|
+
readonly TASK: "TASK";
|
|
39
|
+
readonly VOICE: "VOICE";
|
|
40
|
+
};
|
|
41
|
+
/**
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
export type Channel = (typeof Channel)[keyof typeof Channel];
|
|
31
45
|
/**
|
|
32
46
|
* @public
|
|
33
47
|
* @enum
|
|
@@ -59,20 +73,6 @@ export declare const ContactState: {
|
|
|
59
73
|
* @public
|
|
60
74
|
*/
|
|
61
75
|
export type ContactState = (typeof ContactState)[keyof typeof ContactState];
|
|
62
|
-
/**
|
|
63
|
-
* @public
|
|
64
|
-
* @enum
|
|
65
|
-
*/
|
|
66
|
-
export declare const Channel: {
|
|
67
|
-
readonly CHAT: "CHAT";
|
|
68
|
-
readonly EMAIL: "EMAIL";
|
|
69
|
-
readonly TASK: "TASK";
|
|
70
|
-
readonly VOICE: "VOICE";
|
|
71
|
-
};
|
|
72
|
-
/**
|
|
73
|
-
* @public
|
|
74
|
-
*/
|
|
75
|
-
export type Channel = (typeof Channel)[keyof typeof Channel];
|
|
76
76
|
/**
|
|
77
77
|
* @public
|
|
78
78
|
* @enum
|
|
@@ -1154,6 +1154,19 @@ export declare const PhoneType: {
|
|
|
1154
1154
|
* @public
|
|
1155
1155
|
*/
|
|
1156
1156
|
export type PhoneType = (typeof PhoneType)[keyof typeof PhoneType];
|
|
1157
|
+
/**
|
|
1158
|
+
* @public
|
|
1159
|
+
* @enum
|
|
1160
|
+
*/
|
|
1161
|
+
export declare const VoiceEnhancementMode: {
|
|
1162
|
+
readonly NOISE_SUPPRESSION: "NOISE_SUPPRESSION";
|
|
1163
|
+
readonly NONE: "NONE";
|
|
1164
|
+
readonly VOICE_ISOLATION: "VOICE_ISOLATION";
|
|
1165
|
+
};
|
|
1166
|
+
/**
|
|
1167
|
+
* @public
|
|
1168
|
+
*/
|
|
1169
|
+
export type VoiceEnhancementMode = (typeof VoiceEnhancementMode)[keyof typeof VoiceEnhancementMode];
|
|
1157
1170
|
/**
|
|
1158
1171
|
* @public
|
|
1159
1172
|
* @enum
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccessType, ActionType, AgentAvailabilityTimer, AgentStatusState, AgentStatusType, AiUseCase, AllowedUserAction, ApplicationType, AttachedFileInvalidRequestExceptionReason, AttachedFileServiceQuotaExceededExceptionReason, BehaviorType, Channel, ContactFlowStatus, ContactFlowType, ContactInitiationMethod, ContactInteractionType, ContactState, DataTableAttributeValueType, DataTableLockLevel, DataTableStatus, DeviceType, DirectoryType, EncryptionType, EndpointType, EntityType, EvaluationFormItemEnablementSourceType, EvaluationFormItemEnablementSourceValueType, EvaluationFormItemSourceValuesComparator, EvaluationFormLanguageCode, EvaluationFormMultiSelectQuestionDisplayMode, EvaluationFormQuestionAutomationAnswerSourceType, EvaluationFormScoringMode, EvaluationFormScoringStatus, EvaluationFormSingleSelectQuestionDisplayMode, EvaluationReviewNotificationRecipientType, EventSourceName, FailureReasonCode, FileStatusType, FileUseCaseType, FlowAssociationResourceType, FlowModuleType, HoursOfOperationDays, InstanceStorageResourceType, IntegrationType, ListFlowAssociationResourceType, MultiSelectQuestionRuleCategoryAutomationCondition, NotificationContentType, NotificationDeliveryType, NumericQuestionPropertyAutomationLabel, OutboundStrategyType, OverrideDays, OverrideType, ParticipantRole, ParticipantState, PhoneType, PropertyValidationExceptionReason, QuickConnectType, RecurrenceFrequency, ReferenceStatus, ReferenceType, RehydrationType, RulePublishStatus, ScreenShareCapability, SingleSelectQuestionRuleCategoryAutomationCondition, SlaAssignmentType, SlaType, SourceType, StorageType, StringComparisonType, TaskTemplateFieldType, TaskTemplateStatus, TestCaseEntryPointType, TestCaseStatus, UseCaseType, VideoCapability, ViewStatus, ViewType, VocabularyLanguageCode, VocabularyState,
|
|
1
|
+
import { AccessType, ActionType, AgentAvailabilityTimer, AgentStatusState, AgentStatusType, AiUseCase, AllowedUserAction, ApplicationType, AttachedFileInvalidRequestExceptionReason, AttachedFileServiceQuotaExceededExceptionReason, BehaviorType, Channel, ContactFlowStatus, ContactFlowType, ContactInitiationMethod, ContactInteractionType, ContactState, DataTableAttributeValueType, DataTableLockLevel, DataTableStatus, DeviceType, DirectoryType, EncryptionType, EndpointType, EntityType, EvaluationFormItemEnablementSourceType, EvaluationFormItemEnablementSourceValueType, EvaluationFormItemSourceValuesComparator, EvaluationFormLanguageCode, EvaluationFormMultiSelectQuestionDisplayMode, EvaluationFormQuestionAutomationAnswerSourceType, EvaluationFormScoringMode, EvaluationFormScoringStatus, EvaluationFormSingleSelectQuestionDisplayMode, EvaluationReviewNotificationRecipientType, EventSourceName, FailureReasonCode, FileStatusType, FileUseCaseType, FlowAssociationResourceType, FlowModuleType, HoursOfOperationDays, InstanceStorageResourceType, IntegrationType, ListFlowAssociationResourceType, MultiSelectQuestionRuleCategoryAutomationCondition, NotificationContentType, NotificationDeliveryType, NumericQuestionPropertyAutomationLabel, OutboundStrategyType, OverrideDays, OverrideType, ParticipantRole, ParticipantState, PhoneType, PropertyValidationExceptionReason, QuickConnectType, RecurrenceFrequency, ReferenceStatus, ReferenceType, RehydrationType, RulePublishStatus, ScreenShareCapability, SingleSelectQuestionRuleCategoryAutomationCondition, SlaAssignmentType, SlaType, SourceType, StorageType, StringComparisonType, TaskTemplateFieldType, TaskTemplateStatus, TestCaseEntryPointType, TestCaseStatus, UseCaseType, VideoCapability, ViewStatus, ViewType, VocabularyLanguageCode, VocabularyState, VoiceEnhancementMode } from "./enums";
|
|
2
2
|
/**
|
|
3
3
|
* <p>Information about an action.</p>
|
|
4
4
|
* @public
|
|
@@ -83,6 +83,38 @@ export interface AdditionalEmailRecipients {
|
|
|
83
83
|
*/
|
|
84
84
|
CcList?: EmailRecipient[] | undefined;
|
|
85
85
|
}
|
|
86
|
+
/**
|
|
87
|
+
* <p>Configuration settings for after contact work (ACW) timeout.</p>
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
90
|
+
export interface AfterContactWorkConfig {
|
|
91
|
+
/**
|
|
92
|
+
* <p>The ACW timeout duration in seconds. Minimum: 1 second. Maximum: 2,000,000 seconds (24 days). Enter 0 for indefinite ACW time.</p>
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
95
|
+
AfterContactWorkTimeLimit?: number | undefined;
|
|
96
|
+
}
|
|
97
|
+
/**
|
|
98
|
+
* <p>Configuration settings for after contact work (ACW) timeout for a specific channel.</p>
|
|
99
|
+
* @public
|
|
100
|
+
*/
|
|
101
|
+
export interface AfterContactWorkConfigPerChannel {
|
|
102
|
+
/**
|
|
103
|
+
* <p>The channel for this ACW timeout configuration. Valid values: VOICE, CHAT, TASK, EMAIL.</p>
|
|
104
|
+
* @public
|
|
105
|
+
*/
|
|
106
|
+
Channel: Channel | undefined;
|
|
107
|
+
/**
|
|
108
|
+
* <p>The ACW timeout settings for this channel.</p>
|
|
109
|
+
* @public
|
|
110
|
+
*/
|
|
111
|
+
AfterContactWorkConfig: AfterContactWorkConfig | undefined;
|
|
112
|
+
/**
|
|
113
|
+
* <p>The ACW timeout settings for agent-first callbacks. This setting only applies to the VOICE channel.</p>
|
|
114
|
+
* @public
|
|
115
|
+
*/
|
|
116
|
+
AgentFirstCallbackAfterContactWorkConfig?: AfterContactWorkConfig | undefined;
|
|
117
|
+
}
|
|
86
118
|
/**
|
|
87
119
|
* <p>Information about a traffic distribution.</p>
|
|
88
120
|
* @public
|
|
@@ -6221,6 +6253,27 @@ export interface CreateUseCaseResponse {
|
|
|
6221
6253
|
*/
|
|
6222
6254
|
UseCaseArn?: string | undefined;
|
|
6223
6255
|
}
|
|
6256
|
+
/**
|
|
6257
|
+
* <p>Configuration settings for auto-accept for a specific channel.</p>
|
|
6258
|
+
* @public
|
|
6259
|
+
*/
|
|
6260
|
+
export interface AutoAcceptConfig {
|
|
6261
|
+
/**
|
|
6262
|
+
* <p>The channel for this auto-accept configuration. Valid values: VOICE, CHAT, TASK, EMAIL.</p>
|
|
6263
|
+
* @public
|
|
6264
|
+
*/
|
|
6265
|
+
Channel: Channel | undefined;
|
|
6266
|
+
/**
|
|
6267
|
+
* <p>Indicates whether auto-accept is enabled for this channel. When enabled, available agents are automatically connected to contacts from this channel.</p>
|
|
6268
|
+
* @public
|
|
6269
|
+
*/
|
|
6270
|
+
AutoAccept: boolean | undefined;
|
|
6271
|
+
/**
|
|
6272
|
+
* <p>Indicates whether auto-accept is enabled for agent-first callbacks. This setting only applies to the VOICE channel.</p>
|
|
6273
|
+
* @public
|
|
6274
|
+
*/
|
|
6275
|
+
AgentFirstCallbackAutoAccept?: boolean | undefined;
|
|
6276
|
+
}
|
|
6224
6277
|
/**
|
|
6225
6278
|
* <p>Contains information about the identity of a user.</p>
|
|
6226
6279
|
* <note>
|
|
@@ -6269,6 +6322,23 @@ export interface UserIdentityInfo {
|
|
|
6269
6322
|
*/
|
|
6270
6323
|
Mobile?: string | undefined;
|
|
6271
6324
|
}
|
|
6325
|
+
/**
|
|
6326
|
+
* <p>Configuration settings for persistent connection for a specific channel.</p>
|
|
6327
|
+
* @public
|
|
6328
|
+
*/
|
|
6329
|
+
export interface PersistentConnectionConfig {
|
|
6330
|
+
/**
|
|
6331
|
+
* <p>Configuration settings for persistent connection. <b>Only <code>VOICE</code> is supported for this data type.</b>
|
|
6332
|
+
* </p>
|
|
6333
|
+
* @public
|
|
6334
|
+
*/
|
|
6335
|
+
Channel: Channel | undefined;
|
|
6336
|
+
/**
|
|
6337
|
+
* <p>Indicates whether persistent connection is enabled. When enabled, the agent's connection is maintained after a call ends, enabling subsequent calls to connect faster.</p>
|
|
6338
|
+
* @public
|
|
6339
|
+
*/
|
|
6340
|
+
PersistentConnection: boolean | undefined;
|
|
6341
|
+
}
|
|
6272
6342
|
/**
|
|
6273
6343
|
* <p>Contains information about the phone configuration settings for a user.</p>
|
|
6274
6344
|
* @public
|
|
@@ -6278,7 +6348,7 @@ export interface UserPhoneConfig {
|
|
|
6278
6348
|
* <p>The phone type.</p>
|
|
6279
6349
|
* @public
|
|
6280
6350
|
*/
|
|
6281
|
-
PhoneType
|
|
6351
|
+
PhoneType?: PhoneType | undefined;
|
|
6282
6352
|
/**
|
|
6283
6353
|
* <p>The Auto accept setting.</p>
|
|
6284
6354
|
* @public
|
|
@@ -6307,6 +6377,45 @@ export interface UserPhoneConfig {
|
|
|
6307
6377
|
*/
|
|
6308
6378
|
PersistentConnection?: boolean | undefined;
|
|
6309
6379
|
}
|
|
6380
|
+
/**
|
|
6381
|
+
* <p>Configuration settings for phone type and phone number.</p>
|
|
6382
|
+
* @public
|
|
6383
|
+
*/
|
|
6384
|
+
export interface PhoneNumberConfig {
|
|
6385
|
+
/**
|
|
6386
|
+
* <p>The channel for this phone number configuration. <b>Only <code>VOICE</code> is supported for this data type.</b>
|
|
6387
|
+
* </p>
|
|
6388
|
+
* @public
|
|
6389
|
+
*/
|
|
6390
|
+
Channel: Channel | undefined;
|
|
6391
|
+
/**
|
|
6392
|
+
* <p>The phone type. Valid values: SOFT_PHONE, DESK_PHONE.</p>
|
|
6393
|
+
* @public
|
|
6394
|
+
*/
|
|
6395
|
+
PhoneType: PhoneType | undefined;
|
|
6396
|
+
/**
|
|
6397
|
+
* <p>The phone number for the user's desk phone.</p>
|
|
6398
|
+
* @public
|
|
6399
|
+
*/
|
|
6400
|
+
PhoneNumber?: string | undefined;
|
|
6401
|
+
}
|
|
6402
|
+
/**
|
|
6403
|
+
* <p>Configuration settings for voice enhancement.</p>
|
|
6404
|
+
* @public
|
|
6405
|
+
*/
|
|
6406
|
+
export interface VoiceEnhancementConfig {
|
|
6407
|
+
/**
|
|
6408
|
+
* <p>The channel for this voice enhancement configuration. <b>Only <code>VOICE</code> is supported for this data type.</b>
|
|
6409
|
+
* </p>
|
|
6410
|
+
* @public
|
|
6411
|
+
*/
|
|
6412
|
+
Channel: Channel | undefined;
|
|
6413
|
+
/**
|
|
6414
|
+
* <p>The voice enhancement mode.</p>
|
|
6415
|
+
* @public
|
|
6416
|
+
*/
|
|
6417
|
+
VoiceEnhancementMode: VoiceEnhancementMode | undefined;
|
|
6418
|
+
}
|
|
6310
6419
|
/**
|
|
6311
6420
|
* @public
|
|
6312
6421
|
*/
|
|
@@ -6342,10 +6451,10 @@ export interface CreateUserRequest {
|
|
|
6342
6451
|
*/
|
|
6343
6452
|
IdentityInfo?: UserIdentityInfo | undefined;
|
|
6344
6453
|
/**
|
|
6345
|
-
* <p>The phone settings for the user
|
|
6454
|
+
* <p>The phone settings for the user. This parameter is optional. If not provided, the user can be configured using channel-specific parameters such as <code>AutoAcceptConfigs</code>, <code>AfterContactWorkConfigs</code>, <code>PhoneNumberConfigs</code>, <code>PersistentConnectionConfigs</code>, and <code>VoiceEnhancementConfigs</code>.</p>
|
|
6346
6455
|
* @public
|
|
6347
6456
|
*/
|
|
6348
|
-
PhoneConfig
|
|
6457
|
+
PhoneConfig?: UserPhoneConfig | undefined;
|
|
6349
6458
|
/**
|
|
6350
6459
|
* <p>The identifier of the user account in the directory used for identity management. If Amazon Connect cannot
|
|
6351
6460
|
* access the directory, you can specify this identifier to authenticate users. If you include the identifier, we assume
|
|
@@ -6377,6 +6486,31 @@ export interface CreateUserRequest {
|
|
|
6377
6486
|
* @public
|
|
6378
6487
|
*/
|
|
6379
6488
|
InstanceId: string | undefined;
|
|
6489
|
+
/**
|
|
6490
|
+
* <p>The list of auto-accept configuration settings for each channel.</p>
|
|
6491
|
+
* @public
|
|
6492
|
+
*/
|
|
6493
|
+
AutoAcceptConfigs?: AutoAcceptConfig[] | undefined;
|
|
6494
|
+
/**
|
|
6495
|
+
* <p>The list of after contact work (ACW) timeout configuration settings for each channel.</p>
|
|
6496
|
+
* @public
|
|
6497
|
+
*/
|
|
6498
|
+
AfterContactWorkConfigs?: AfterContactWorkConfigPerChannel[] | undefined;
|
|
6499
|
+
/**
|
|
6500
|
+
* <p>The list of phone number configuration settings for each channel.</p>
|
|
6501
|
+
* @public
|
|
6502
|
+
*/
|
|
6503
|
+
PhoneNumberConfigs?: PhoneNumberConfig[] | undefined;
|
|
6504
|
+
/**
|
|
6505
|
+
* <p>The list of persistent connection configuration settings for each channel.</p>
|
|
6506
|
+
* @public
|
|
6507
|
+
*/
|
|
6508
|
+
PersistentConnectionConfigs?: PersistentConnectionConfig[] | undefined;
|
|
6509
|
+
/**
|
|
6510
|
+
* <p>The list of voice enhancement configuration settings for each channel.</p>
|
|
6511
|
+
* @public
|
|
6512
|
+
*/
|
|
6513
|
+
VoiceEnhancementConfigs?: VoiceEnhancementConfig[] | undefined;
|
|
6380
6514
|
/**
|
|
6381
6515
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
6382
6516
|
* @public
|
|
@@ -6867,114 +7001,3 @@ export interface WorkspaceThemePalette {
|
|
|
6867
7001
|
*/
|
|
6868
7002
|
Primary?: PalettePrimary | undefined;
|
|
6869
7003
|
}
|
|
6870
|
-
/**
|
|
6871
|
-
* <p>Contains font family configuration for workspace themes.</p>
|
|
6872
|
-
* @public
|
|
6873
|
-
*/
|
|
6874
|
-
export interface FontFamily {
|
|
6875
|
-
/**
|
|
6876
|
-
* <p>The default font family to use in the workspace theme.</p>
|
|
6877
|
-
* @public
|
|
6878
|
-
*/
|
|
6879
|
-
Default?: WorkspaceFontFamily | undefined;
|
|
6880
|
-
}
|
|
6881
|
-
/**
|
|
6882
|
-
* <p>Contains typography configuration for a workspace theme.</p>
|
|
6883
|
-
* @public
|
|
6884
|
-
*/
|
|
6885
|
-
export interface WorkspaceThemeTypography {
|
|
6886
|
-
/**
|
|
6887
|
-
* <p>The font family configuration for text in the workspace.</p>
|
|
6888
|
-
* @public
|
|
6889
|
-
*/
|
|
6890
|
-
FontFamily?: FontFamily | undefined;
|
|
6891
|
-
}
|
|
6892
|
-
/**
|
|
6893
|
-
* <p>Contains detailed theme configuration for a workspace, including colors, images, and typography.</p>
|
|
6894
|
-
* @public
|
|
6895
|
-
*/
|
|
6896
|
-
export interface WorkspaceThemeConfig {
|
|
6897
|
-
/**
|
|
6898
|
-
* <p>The color palette configuration for the workspace theme.</p>
|
|
6899
|
-
* @public
|
|
6900
|
-
*/
|
|
6901
|
-
Palette?: WorkspaceThemePalette | undefined;
|
|
6902
|
-
/**
|
|
6903
|
-
* <p>The image assets used in the workspace theme.</p>
|
|
6904
|
-
* @public
|
|
6905
|
-
*/
|
|
6906
|
-
Images?: WorkspaceThemeImages | undefined;
|
|
6907
|
-
/**
|
|
6908
|
-
* <p>The typography configuration for the workspace theme.</p>
|
|
6909
|
-
* @public
|
|
6910
|
-
*/
|
|
6911
|
-
Typography?: WorkspaceThemeTypography | undefined;
|
|
6912
|
-
}
|
|
6913
|
-
/**
|
|
6914
|
-
* <p>Contains theme configuration for a workspace, supporting both light and dark modes.</p>
|
|
6915
|
-
* @public
|
|
6916
|
-
*/
|
|
6917
|
-
export interface WorkspaceTheme {
|
|
6918
|
-
/**
|
|
6919
|
-
* <p>The theme configuration for light mode.</p>
|
|
6920
|
-
* @public
|
|
6921
|
-
*/
|
|
6922
|
-
Light?: WorkspaceThemeConfig | undefined;
|
|
6923
|
-
/**
|
|
6924
|
-
* <p>The theme configuration for dark mode.</p>
|
|
6925
|
-
* @public
|
|
6926
|
-
*/
|
|
6927
|
-
Dark?: WorkspaceThemeConfig | undefined;
|
|
6928
|
-
}
|
|
6929
|
-
/**
|
|
6930
|
-
* @public
|
|
6931
|
-
*/
|
|
6932
|
-
export interface CreateWorkspaceRequest {
|
|
6933
|
-
/**
|
|
6934
|
-
* <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
|
|
6935
|
-
* the Amazon Resource Name (ARN) of the instance.</p>
|
|
6936
|
-
* @public
|
|
6937
|
-
*/
|
|
6938
|
-
InstanceId: string | undefined;
|
|
6939
|
-
/**
|
|
6940
|
-
* <p>The name of the workspace. Must be unique within the instance and can contain 1-127 characters.</p>
|
|
6941
|
-
* @public
|
|
6942
|
-
*/
|
|
6943
|
-
Name: string | undefined;
|
|
6944
|
-
/**
|
|
6945
|
-
* <p>The description of the workspace. Maximum length is 250 characters.</p>
|
|
6946
|
-
* @public
|
|
6947
|
-
*/
|
|
6948
|
-
Description?: string | undefined;
|
|
6949
|
-
/**
|
|
6950
|
-
* <p>The theme configuration for the workspace, including colors and styling.</p>
|
|
6951
|
-
* @public
|
|
6952
|
-
*/
|
|
6953
|
-
Theme?: WorkspaceTheme | undefined;
|
|
6954
|
-
/**
|
|
6955
|
-
* <p>The title displayed for the workspace.</p>
|
|
6956
|
-
* @public
|
|
6957
|
-
*/
|
|
6958
|
-
Title?: string | undefined;
|
|
6959
|
-
/**
|
|
6960
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, <code>\{ "Tags":
|
|
6961
|
-
* \{"key1":"value1", "key2":"value2"\} \}</code>.</p>
|
|
6962
|
-
* @public
|
|
6963
|
-
*/
|
|
6964
|
-
Tags?: Record<string, string> | undefined;
|
|
6965
|
-
}
|
|
6966
|
-
/**
|
|
6967
|
-
* @public
|
|
6968
|
-
*/
|
|
6969
|
-
export interface CreateWorkspaceResponse {
|
|
6970
|
-
/**
|
|
6971
|
-
* <p>The identifier of the workspace.</p>
|
|
6972
|
-
* @public
|
|
6973
|
-
*/
|
|
6974
|
-
WorkspaceId: string | undefined;
|
|
6975
|
-
/**
|
|
6976
|
-
* <p>The Amazon Resource Name (ARN) of the workspace.</p>
|
|
6977
|
-
* @public
|
|
6978
|
-
*/
|
|
6979
|
-
WorkspaceArn: string | undefined;
|
|
6980
|
-
}
|
|
@@ -1,5 +1,116 @@
|
|
|
1
|
-
import { AgentAvailabilityTimer,
|
|
2
|
-
import { type AgentConfig, type AgentQualityMetrics, type AgentsCriteria, type AgentStatus, type AgentStatusIdentifier, type AgentStatusReference, type AudioQualityMetricsInfo, type CreatedByInfo, type DataTableLockVersion, type DeviceInfo, type ExternalInvocationConfiguration, type GranularAccessControlConfiguration, type InstanceStorageConfig, type LexBot, type LexV2Bot, type OutboundCallerConfig, type OutboundEmailConfig, type OverrideTimeSlice, type ParticipantCapabilities, type PredefinedAttributeValues, type QueueReference, type QuickConnectConfig, type RecurrenceConfig, type RuleTriggerEventSource, type TaskTemplateConstraints, type TaskTemplateDefaults, type TestCaseEntryPoint, type UserIdentityInfo, type UserPhoneConfig, type Validation, type View, type
|
|
1
|
+
import { AgentAvailabilityTimer, AutoEvaluationStatus, Channel, Comparison, ContactFlowModuleState, ContactFlowModuleStatus, ContactFlowState, ContactFlowStatus, ContactFlowType, ContactMetricName, ContactParticipantRole, ContactState, CurrentMetricName, DataTableAttributeValueType, DataTableLockLevel, DataTableStatus, DirectoryType, EndpointType, EntityType, EvaluationQuestionAnswerAnalysisType, EvaluationStatus, EvaluationSuggestedAnswerStatus, EvaluationTranscriptType, EvaluationType, FileStatusType, FileUseCaseType, FilterV2StringConditionComparisonOperator, FlowAssociationResourceType, Grouping, HistoricalMetricName, InstanceAttributeType, InstanceReplicationStatus, InstanceStatus, InstanceStorageResourceType, IntervalPeriod, MediaStreamType, MediaType, NextContactType, OperationalStatus, OverrideType, ParticipantType, PhoneNumberCountryCode, PhoneNumberType, PhoneNumberWorkflowStatus, QuestionRuleCategoryAutomationCondition, QueueStatus, QuickConnectType, RecordingStatus, RulePublishStatus, SortOrder, Statistic, Status, StorageType, TaskTemplateStatus, TestCaseExecutionStatus, TestCaseStatus, TrafficDistributionGroupStatus, Unit, Visibility, VocabularyLanguageCode, VocabularyState, WorkspaceFontFamily } from "./enums";
|
|
2
|
+
import { type AgentConfig, type AgentQualityMetrics, type AgentsCriteria, type AgentStatus, type AgentStatusIdentifier, type AgentStatusReference, type AudioQualityMetricsInfo, type CreatedByInfo, type DataTableLockVersion, type DeviceInfo, type ExternalInvocationConfiguration, type GranularAccessControlConfiguration, type InstanceStorageConfig, type LexBot, type LexV2Bot, type OutboundCallerConfig, type OutboundEmailConfig, type OverrideTimeSlice, type ParticipantCapabilities, type PredefinedAttributeValues, type QueueReference, type QuickConnectConfig, type RecurrenceConfig, type RuleTriggerEventSource, type TaskTemplateConstraints, type TaskTemplateDefaults, type TestCaseEntryPoint, type UserIdentityInfo, type UserPhoneConfig, type Validation, type View, type WorkspaceThemeImages, type WorkspaceThemePalette, AfterContactWorkConfigPerChannel, AgentContactReference, AiAgentInfo, AliasConfiguration, AutoAcceptConfig, Distribution, FailedBatchAssociationSummary, HoursOfOperationConfig, HoursOfOperationOverrideConfig, MediaConcurrency, PersistentConnectionConfig, PhoneNumberConfig, PrimaryValue, RoutingProfileQueueReference, RuleAction, SecurityProfileItem, SuccessfulBatchAssociationSummary, TaskTemplateField, VoiceEnhancementConfig } from "./models_0";
|
|
3
|
+
/**
|
|
4
|
+
* <p>Contains font family configuration for workspace themes.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface FontFamily {
|
|
8
|
+
/**
|
|
9
|
+
* <p>The default font family to use in the workspace theme.</p>
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
Default?: WorkspaceFontFamily | undefined;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* <p>Contains typography configuration for a workspace theme.</p>
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
export interface WorkspaceThemeTypography {
|
|
19
|
+
/**
|
|
20
|
+
* <p>The font family configuration for text in the workspace.</p>
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
FontFamily?: FontFamily | undefined;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* <p>Contains detailed theme configuration for a workspace, including colors, images, and typography.</p>
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
29
|
+
export interface WorkspaceThemeConfig {
|
|
30
|
+
/**
|
|
31
|
+
* <p>The color palette configuration for the workspace theme.</p>
|
|
32
|
+
* @public
|
|
33
|
+
*/
|
|
34
|
+
Palette?: WorkspaceThemePalette | undefined;
|
|
35
|
+
/**
|
|
36
|
+
* <p>The image assets used in the workspace theme.</p>
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
Images?: WorkspaceThemeImages | undefined;
|
|
40
|
+
/**
|
|
41
|
+
* <p>The typography configuration for the workspace theme.</p>
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
Typography?: WorkspaceThemeTypography | undefined;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* <p>Contains theme configuration for a workspace, supporting both light and dark modes.</p>
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
export interface WorkspaceTheme {
|
|
51
|
+
/**
|
|
52
|
+
* <p>The theme configuration for light mode.</p>
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
Light?: WorkspaceThemeConfig | undefined;
|
|
56
|
+
/**
|
|
57
|
+
* <p>The theme configuration for dark mode.</p>
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
60
|
+
Dark?: WorkspaceThemeConfig | undefined;
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
65
|
+
export interface CreateWorkspaceRequest {
|
|
66
|
+
/**
|
|
67
|
+
* <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
|
|
68
|
+
* the Amazon Resource Name (ARN) of the instance.</p>
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
InstanceId: string | undefined;
|
|
72
|
+
/**
|
|
73
|
+
* <p>The name of the workspace. Must be unique within the instance and can contain 1-127 characters.</p>
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
Name: string | undefined;
|
|
77
|
+
/**
|
|
78
|
+
* <p>The description of the workspace. Maximum length is 250 characters.</p>
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
Description?: string | undefined;
|
|
82
|
+
/**
|
|
83
|
+
* <p>The theme configuration for the workspace, including colors and styling.</p>
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
Theme?: WorkspaceTheme | undefined;
|
|
87
|
+
/**
|
|
88
|
+
* <p>The title displayed for the workspace.</p>
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
Title?: string | undefined;
|
|
92
|
+
/**
|
|
93
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, <code>\{ "Tags":
|
|
94
|
+
* \{"key1":"value1", "key2":"value2"\} \}</code>.</p>
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
97
|
+
Tags?: Record<string, string> | undefined;
|
|
98
|
+
}
|
|
99
|
+
/**
|
|
100
|
+
* @public
|
|
101
|
+
*/
|
|
102
|
+
export interface CreateWorkspaceResponse {
|
|
103
|
+
/**
|
|
104
|
+
* <p>The identifier of the workspace.</p>
|
|
105
|
+
* @public
|
|
106
|
+
*/
|
|
107
|
+
WorkspaceId: string | undefined;
|
|
108
|
+
/**
|
|
109
|
+
* <p>The Amazon Resource Name (ARN) of the workspace.</p>
|
|
110
|
+
* @public
|
|
111
|
+
*/
|
|
112
|
+
WorkspaceArn: string | undefined;
|
|
113
|
+
}
|
|
3
114
|
/**
|
|
4
115
|
* @public
|
|
5
116
|
*/
|
|
@@ -4126,6 +4237,31 @@ export interface User {
|
|
|
4126
4237
|
* @public
|
|
4127
4238
|
*/
|
|
4128
4239
|
Tags?: Record<string, string> | undefined;
|
|
4240
|
+
/**
|
|
4241
|
+
* <p>The list of auto-accept configuration settings for each channel.</p>
|
|
4242
|
+
* @public
|
|
4243
|
+
*/
|
|
4244
|
+
AutoAcceptConfigs?: AutoAcceptConfig[] | undefined;
|
|
4245
|
+
/**
|
|
4246
|
+
* <p>The list of after contact work (ACW) timeout configuration settings for each channel.</p>
|
|
4247
|
+
* @public
|
|
4248
|
+
*/
|
|
4249
|
+
AfterContactWorkConfigs?: AfterContactWorkConfigPerChannel[] | undefined;
|
|
4250
|
+
/**
|
|
4251
|
+
* <p>The list of phone number configuration settings for each channel.</p>
|
|
4252
|
+
* @public
|
|
4253
|
+
*/
|
|
4254
|
+
PhoneNumberConfigs?: PhoneNumberConfig[] | undefined;
|
|
4255
|
+
/**
|
|
4256
|
+
* <p>The list of persistent connection configuration settings for each channel.</p>
|
|
4257
|
+
* @public
|
|
4258
|
+
*/
|
|
4259
|
+
PersistentConnectionConfigs?: PersistentConnectionConfig[] | undefined;
|
|
4260
|
+
/**
|
|
4261
|
+
* <p>The list of voice enhancement configuration settings for each channel.</p>
|
|
4262
|
+
* @public
|
|
4263
|
+
*/
|
|
4264
|
+
VoiceEnhancementConfigs?: VoiceEnhancementConfig[] | undefined;
|
|
4129
4265
|
/**
|
|
4130
4266
|
* <p>The timestamp when this resource was last modified.</p>
|
|
4131
4267
|
* @public
|
|
@@ -9048,125 +9184,3 @@ export interface ImportWorkspaceMediaRequest {
|
|
|
9048
9184
|
*/
|
|
9049
9185
|
export interface ImportWorkspaceMediaResponse {
|
|
9050
9186
|
}
|
|
9051
|
-
/**
|
|
9052
|
-
* @public
|
|
9053
|
-
*/
|
|
9054
|
-
export interface ListAgentStatusRequest {
|
|
9055
|
-
/**
|
|
9056
|
-
* <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>
|
|
9057
|
-
* @public
|
|
9058
|
-
*/
|
|
9059
|
-
InstanceId: string | undefined;
|
|
9060
|
-
/**
|
|
9061
|
-
* <p>The token for the next set of results. Use the value returned in the previous
|
|
9062
|
-
* response in the next request to retrieve the next set of results.</p>
|
|
9063
|
-
* @public
|
|
9064
|
-
*/
|
|
9065
|
-
NextToken?: string | undefined;
|
|
9066
|
-
/**
|
|
9067
|
-
* <p>The maximum number of results to return per page.</p>
|
|
9068
|
-
* @public
|
|
9069
|
-
*/
|
|
9070
|
-
MaxResults?: number | undefined;
|
|
9071
|
-
/**
|
|
9072
|
-
* <p>Available agent status types.</p>
|
|
9073
|
-
* @public
|
|
9074
|
-
*/
|
|
9075
|
-
AgentStatusTypes?: AgentStatusType[] | undefined;
|
|
9076
|
-
}
|
|
9077
|
-
/**
|
|
9078
|
-
* @public
|
|
9079
|
-
*/
|
|
9080
|
-
export interface ListAgentStatusResponse {
|
|
9081
|
-
/**
|
|
9082
|
-
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
9083
|
-
* @public
|
|
9084
|
-
*/
|
|
9085
|
-
NextToken?: string | undefined;
|
|
9086
|
-
/**
|
|
9087
|
-
* <p>A summary of agent statuses.</p>
|
|
9088
|
-
* @public
|
|
9089
|
-
*/
|
|
9090
|
-
AgentStatusSummaryList?: AgentStatusSummary[] | undefined;
|
|
9091
|
-
}
|
|
9092
|
-
/**
|
|
9093
|
-
* @public
|
|
9094
|
-
*/
|
|
9095
|
-
export interface ListAnalyticsDataAssociationsRequest {
|
|
9096
|
-
/**
|
|
9097
|
-
* <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>
|
|
9098
|
-
* @public
|
|
9099
|
-
*/
|
|
9100
|
-
InstanceId: string | undefined;
|
|
9101
|
-
/**
|
|
9102
|
-
* <p>The identifier of the dataset to get the association status.</p>
|
|
9103
|
-
* @public
|
|
9104
|
-
*/
|
|
9105
|
-
DataSetId?: string | undefined;
|
|
9106
|
-
/**
|
|
9107
|
-
* <p>The token for the next set of results. Use the value returned in the previous
|
|
9108
|
-
* response in the next request to retrieve the next set of results.</p>
|
|
9109
|
-
* @public
|
|
9110
|
-
*/
|
|
9111
|
-
NextToken?: string | undefined;
|
|
9112
|
-
/**
|
|
9113
|
-
* <p>The maximum number of results to return per page.</p>
|
|
9114
|
-
* @public
|
|
9115
|
-
*/
|
|
9116
|
-
MaxResults?: number | undefined;
|
|
9117
|
-
}
|
|
9118
|
-
/**
|
|
9119
|
-
* @public
|
|
9120
|
-
*/
|
|
9121
|
-
export interface ListAnalyticsDataAssociationsResponse {
|
|
9122
|
-
/**
|
|
9123
|
-
* <p>An array of successful results: <code>DataSetId</code>, <code>TargetAccountId</code>,
|
|
9124
|
-
* <code>ResourceShareId</code>, <code>ResourceShareArn</code>. This is a paginated API, so <code>nextToken</code> is
|
|
9125
|
-
* given if there are more results to be returned.</p>
|
|
9126
|
-
* @public
|
|
9127
|
-
*/
|
|
9128
|
-
Results?: AnalyticsDataAssociationResult[] | undefined;
|
|
9129
|
-
/**
|
|
9130
|
-
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
9131
|
-
* @public
|
|
9132
|
-
*/
|
|
9133
|
-
NextToken?: string | undefined;
|
|
9134
|
-
}
|
|
9135
|
-
/**
|
|
9136
|
-
* @public
|
|
9137
|
-
*/
|
|
9138
|
-
export interface ListAnalyticsDataLakeDataSetsRequest {
|
|
9139
|
-
/**
|
|
9140
|
-
* <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>
|
|
9141
|
-
* @public
|
|
9142
|
-
*/
|
|
9143
|
-
InstanceId: string | undefined;
|
|
9144
|
-
/**
|
|
9145
|
-
* <p>The token for the next set of results. Use the value returned in the previous
|
|
9146
|
-
* response in the next request to retrieve the next set of results.</p>
|
|
9147
|
-
* @public
|
|
9148
|
-
*/
|
|
9149
|
-
NextToken?: string | undefined;
|
|
9150
|
-
/**
|
|
9151
|
-
* <p>The maximum number of results to return per page.</p>
|
|
9152
|
-
* @public
|
|
9153
|
-
*/
|
|
9154
|
-
MaxResults?: number | undefined;
|
|
9155
|
-
}
|
|
9156
|
-
/**
|
|
9157
|
-
* <p>Information about datasets that are available to associate with: <code>DataSetId</code>,
|
|
9158
|
-
* <code>DataSetName</code>.</p>
|
|
9159
|
-
* @public
|
|
9160
|
-
*/
|
|
9161
|
-
export interface AnalyticsDataSetsResult {
|
|
9162
|
-
/**
|
|
9163
|
-
* <p>The identifier of the dataset.</p>
|
|
9164
|
-
* @public
|
|
9165
|
-
*/
|
|
9166
|
-
DataSetId?: string | undefined;
|
|
9167
|
-
/**
|
|
9168
|
-
* <p>The name of the dataset.</p>
|
|
9169
|
-
* @public
|
|
9170
|
-
*/
|
|
9171
|
-
DataSetName?: string | undefined;
|
|
9172
|
-
}
|