@aws-sdk/client-connect 3.473.0 → 3.475.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 +32 -0
- package/dist-cjs/Connect.js +8 -0
- package/dist-cjs/commands/PauseContactCommand.js +51 -0
- package/dist-cjs/commands/ResumeContactCommand.js +51 -0
- package/dist-cjs/commands/TagContactCommand.js +51 -0
- package/dist-cjs/commands/UntagContactCommand.js +51 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/models/models_0.js +7 -5
- package/dist-cjs/models/models_1.js +19 -6
- package/dist-cjs/models/models_2.js +6 -1
- package/dist-cjs/protocols/Aws_restJson1.js +414 -10
- package/dist-es/Connect.js +8 -0
- package/dist-es/commands/PauseContactCommand.js +47 -0
- package/dist-es/commands/ResumeContactCommand.js +47 -0
- package/dist-es/commands/TagContactCommand.js +47 -0
- package/dist-es/commands/UntagContactCommand.js +47 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +6 -4
- package/dist-es/models/models_1.js +17 -5
- package/dist-es/models/models_2.js +5 -0
- package/dist-es/protocols/Aws_restJson1.js +400 -4
- package/dist-types/Connect.d.ts +28 -0
- package/dist-types/ConnectClient.d.ts +6 -2
- package/dist-types/commands/BatchAssociateAnalyticsDataSetCommand.d.ts +2 -2
- package/dist-types/commands/CreateIntegrationAssociationCommand.d.ts +1 -1
- package/dist-types/commands/CreateRuleCommand.d.ts +30 -2
- package/dist-types/commands/DescribeContactCommand.d.ts +8 -0
- package/dist-types/commands/DescribePromptCommand.d.ts +2 -1
- package/dist-types/commands/DescribeQueueCommand.d.ts +1 -1
- package/dist-types/commands/DescribeRuleCommand.d.ts +30 -2
- package/dist-types/commands/ListIntegrationAssociationsCommand.d.ts +1 -1
- package/dist-types/commands/ListRulesCommand.d.ts +3 -3
- package/dist-types/commands/PauseContactCommand.d.ts +97 -0
- package/dist-types/commands/ResumeContactCommand.d.ts +94 -0
- package/dist-types/commands/SearchUsersCommand.d.ts +1 -2
- package/dist-types/commands/SearchVocabulariesCommand.d.ts +1 -1
- package/dist-types/commands/StartOutboundVoiceContactCommand.d.ts +9 -0
- package/dist-types/commands/TagContactCommand.d.ts +92 -0
- package/dist-types/commands/UntagContactCommand.d.ts +91 -0
- package/dist-types/commands/UpdateRuleCommand.d.ts +29 -1
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +164 -175
- package/dist-types/models/models_1.d.ts +237 -319
- package/dist-types/models/models_2.d.ts +398 -9
- package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
- package/dist-types/ts3.4/Connect.d.ts +68 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/DescribePromptCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeQueueCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PauseContactCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ResumeContactCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/SearchUsersCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/SearchVocabulariesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/TagContactCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UntagContactCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +34 -37
- package/dist-types/ts3.4/models/models_1.d.ts +56 -65
- package/dist-types/ts3.4/models/models_2.d.ts +84 -5
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
- package/package.json +4 -4
|
@@ -19,9 +19,12 @@ 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 CREATE_CASE: "CREATE_CASE";
|
|
22
23
|
readonly CREATE_TASK: "CREATE_TASK";
|
|
24
|
+
readonly END_ASSOCIATED_TASKS: "END_ASSOCIATED_TASKS";
|
|
23
25
|
readonly GENERATE_EVENTBRIDGE_EVENT: "GENERATE_EVENTBRIDGE_EVENT";
|
|
24
26
|
readonly SEND_NOTIFICATION: "SEND_NOTIFICATION";
|
|
27
|
+
readonly UPDATE_CASE: "UPDATE_CASE";
|
|
25
28
|
};
|
|
26
29
|
/**
|
|
27
30
|
* @public
|
|
@@ -319,6 +322,11 @@ export interface AgentInfo {
|
|
|
319
322
|
* <p>The timestamp when the contact was connected to the agent.</p>
|
|
320
323
|
*/
|
|
321
324
|
ConnectedToAgentTimestamp?: Date;
|
|
325
|
+
/**
|
|
326
|
+
* @public
|
|
327
|
+
* <p>Agent pause duration for a contact in seconds.</p>
|
|
328
|
+
*/
|
|
329
|
+
AgentPauseDurationInSeconds?: number;
|
|
322
330
|
}
|
|
323
331
|
/**
|
|
324
332
|
* @public
|
|
@@ -387,7 +395,7 @@ export interface AgentStatus {
|
|
|
387
395
|
State?: AgentStatusState;
|
|
388
396
|
/**
|
|
389
397
|
* @public
|
|
390
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "
|
|
398
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
391
399
|
*/
|
|
392
400
|
Tags?: Record<string, string>;
|
|
393
401
|
/**
|
|
@@ -1233,8 +1241,8 @@ export interface BatchAssociateAnalyticsDataSetResponse {
|
|
|
1233
1241
|
Created?: AnalyticsDataAssociationResult[];
|
|
1234
1242
|
/**
|
|
1235
1243
|
* @public
|
|
1236
|
-
* <p>A list of errors for datasets that aren't successfully associated
|
|
1237
|
-
*
|
|
1244
|
+
* <p>A list of errors for datasets that aren't successfully associated with the target
|
|
1245
|
+
* account.</p>
|
|
1238
1246
|
*/
|
|
1239
1247
|
Errors?: ErrorResult[];
|
|
1240
1248
|
}
|
|
@@ -1553,7 +1561,7 @@ export interface ClaimPhoneNumberRequest {
|
|
|
1553
1561
|
PhoneNumberDescription?: string;
|
|
1554
1562
|
/**
|
|
1555
1563
|
* @public
|
|
1556
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "
|
|
1564
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
1557
1565
|
*/
|
|
1558
1566
|
Tags?: Record<string, string>;
|
|
1559
1567
|
/**
|
|
@@ -1613,7 +1621,7 @@ export interface CreateAgentStatusRequest {
|
|
|
1613
1621
|
DisplayOrder?: number;
|
|
1614
1622
|
/**
|
|
1615
1623
|
* @public
|
|
1616
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "
|
|
1624
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
1617
1625
|
*/
|
|
1618
1626
|
Tags?: Record<string, string>;
|
|
1619
1627
|
}
|
|
@@ -1698,7 +1706,7 @@ export interface CreateContactFlowRequest {
|
|
|
1698
1706
|
Content: string | undefined;
|
|
1699
1707
|
/**
|
|
1700
1708
|
* @public
|
|
1701
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "
|
|
1709
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
1702
1710
|
*/
|
|
1703
1711
|
Tags?: Record<string, string>;
|
|
1704
1712
|
}
|
|
@@ -1772,7 +1780,7 @@ export interface CreateContactFlowModuleRequest {
|
|
|
1772
1780
|
Content: string | undefined;
|
|
1773
1781
|
/**
|
|
1774
1782
|
* @public
|
|
1775
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "
|
|
1783
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
1776
1784
|
*/
|
|
1777
1785
|
Tags?: Record<string, string>;
|
|
1778
1786
|
/**
|
|
@@ -2329,7 +2337,7 @@ export interface CreateHoursOfOperationRequest {
|
|
|
2329
2337
|
Config: HoursOfOperationConfig[] | undefined;
|
|
2330
2338
|
/**
|
|
2331
2339
|
* @public
|
|
2332
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "
|
|
2340
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
2333
2341
|
*/
|
|
2334
2342
|
Tags?: Record<string, string>;
|
|
2335
2343
|
}
|
|
@@ -2397,7 +2405,8 @@ export interface CreateInstanceRequest {
|
|
|
2397
2405
|
OutboundCallsEnabled: boolean | undefined;
|
|
2398
2406
|
/**
|
|
2399
2407
|
* @public
|
|
2400
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, <code>\{
|
|
2408
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, <code>\{
|
|
2409
|
+
* "tags": \{"key1":"value1", "key2":"value2"\} \}</code>.</p>
|
|
2401
2410
|
*/
|
|
2402
2411
|
Tags?: Record<string, string>;
|
|
2403
2412
|
}
|
|
@@ -2440,6 +2449,7 @@ export type IntegrationType = (typeof IntegrationType)[keyof typeof IntegrationT
|
|
|
2440
2449
|
* @enum
|
|
2441
2450
|
*/
|
|
2442
2451
|
export declare const SourceType: {
|
|
2452
|
+
readonly CASES: "CASES";
|
|
2443
2453
|
readonly SALESFORCE: "SALESFORCE";
|
|
2444
2454
|
readonly ZENDESK: "ZENDESK";
|
|
2445
2455
|
};
|
|
@@ -2487,7 +2497,7 @@ export interface CreateIntegrationAssociationRequest {
|
|
|
2487
2497
|
SourceType?: SourceType;
|
|
2488
2498
|
/**
|
|
2489
2499
|
* @public
|
|
2490
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "
|
|
2500
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
2491
2501
|
*/
|
|
2492
2502
|
Tags?: Record<string, string>;
|
|
2493
2503
|
}
|
|
@@ -2781,7 +2791,7 @@ export interface CreatePromptRequest {
|
|
|
2781
2791
|
S3Uri: string | undefined;
|
|
2782
2792
|
/**
|
|
2783
2793
|
* @public
|
|
2784
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "
|
|
2794
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
2785
2795
|
*/
|
|
2786
2796
|
Tags?: Record<string, string>;
|
|
2787
2797
|
}
|
|
@@ -2862,7 +2872,7 @@ export interface CreateQueueRequest {
|
|
|
2862
2872
|
QuickConnectIds?: string[];
|
|
2863
2873
|
/**
|
|
2864
2874
|
* @public
|
|
2865
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "
|
|
2875
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
2866
2876
|
*/
|
|
2867
2877
|
Tags?: Record<string, string>;
|
|
2868
2878
|
}
|
|
@@ -2992,7 +3002,7 @@ export interface CreateQuickConnectRequest {
|
|
|
2992
3002
|
QuickConnectConfig: QuickConnectConfig | undefined;
|
|
2993
3003
|
/**
|
|
2994
3004
|
* @public
|
|
2995
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "
|
|
3005
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
2996
3006
|
*/
|
|
2997
3007
|
Tags?: Record<string, string>;
|
|
2998
3008
|
}
|
|
@@ -3106,7 +3116,7 @@ export interface CreateRoutingProfileRequest {
|
|
|
3106
3116
|
MediaConcurrencies: MediaConcurrency[] | undefined;
|
|
3107
3117
|
/**
|
|
3108
3118
|
* @public
|
|
3109
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "
|
|
3119
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
3110
3120
|
*/
|
|
3111
3121
|
Tags?: Record<string, string>;
|
|
3112
3122
|
/**
|
|
@@ -3143,6 +3153,76 @@ export interface CreateRoutingProfileResponse {
|
|
|
3143
3153
|
*/
|
|
3144
3154
|
export interface AssignContactCategoryActionDefinition {
|
|
3145
3155
|
}
|
|
3156
|
+
/**
|
|
3157
|
+
* @public
|
|
3158
|
+
* <p>An empty value.</p>
|
|
3159
|
+
*/
|
|
3160
|
+
export interface EmptyFieldValue {
|
|
3161
|
+
}
|
|
3162
|
+
/**
|
|
3163
|
+
* @public
|
|
3164
|
+
* <p>Object to store union of Field values.</p>
|
|
3165
|
+
*/
|
|
3166
|
+
export interface FieldValueUnion {
|
|
3167
|
+
/**
|
|
3168
|
+
* @public
|
|
3169
|
+
* <p>A Boolean number value type.</p>
|
|
3170
|
+
*/
|
|
3171
|
+
BooleanValue?: boolean;
|
|
3172
|
+
/**
|
|
3173
|
+
* @public
|
|
3174
|
+
* <p>a Double number value type.</p>
|
|
3175
|
+
*/
|
|
3176
|
+
DoubleValue?: number;
|
|
3177
|
+
/**
|
|
3178
|
+
* @public
|
|
3179
|
+
* <p>An empty value.</p>
|
|
3180
|
+
*/
|
|
3181
|
+
EmptyValue?: EmptyFieldValue;
|
|
3182
|
+
/**
|
|
3183
|
+
* @public
|
|
3184
|
+
* <p>String value type.</p>
|
|
3185
|
+
*/
|
|
3186
|
+
StringValue?: string;
|
|
3187
|
+
}
|
|
3188
|
+
/**
|
|
3189
|
+
* @public
|
|
3190
|
+
* <p>Object for case field values.</p>
|
|
3191
|
+
*/
|
|
3192
|
+
export interface FieldValue {
|
|
3193
|
+
/**
|
|
3194
|
+
* @public
|
|
3195
|
+
* <p>Unique identifier of a field.</p>
|
|
3196
|
+
*/
|
|
3197
|
+
Id: string | undefined;
|
|
3198
|
+
/**
|
|
3199
|
+
* @public
|
|
3200
|
+
* <p>Union of potential field value types.</p>
|
|
3201
|
+
*/
|
|
3202
|
+
Value: FieldValueUnion | undefined;
|
|
3203
|
+
}
|
|
3204
|
+
/**
|
|
3205
|
+
* @public
|
|
3206
|
+
* <p>The <code>CreateCase</code> action definition.</p>
|
|
3207
|
+
*/
|
|
3208
|
+
export interface CreateCaseActionDefinition {
|
|
3209
|
+
/**
|
|
3210
|
+
* @public
|
|
3211
|
+
* <p>An array of objects with <code>Field ID</code> and <code>Value</code> data.</p>
|
|
3212
|
+
*/
|
|
3213
|
+
Fields: FieldValue[] | undefined;
|
|
3214
|
+
/**
|
|
3215
|
+
* @public
|
|
3216
|
+
* <p>A unique identifier of a template.</p>
|
|
3217
|
+
*/
|
|
3218
|
+
TemplateId: string | undefined;
|
|
3219
|
+
}
|
|
3220
|
+
/**
|
|
3221
|
+
* @public
|
|
3222
|
+
* <p>End associated tasks related to a case.</p>
|
|
3223
|
+
*/
|
|
3224
|
+
export interface EndAssociatedTasksActionDefinition {
|
|
3225
|
+
}
|
|
3146
3226
|
/**
|
|
3147
3227
|
* @public
|
|
3148
3228
|
* <p>The EventBridge action definition.</p>
|
|
@@ -3183,7 +3263,7 @@ export type NotificationDeliveryType = (typeof NotificationDeliveryType)[keyof t
|
|
|
3183
3263
|
export interface NotificationRecipientType {
|
|
3184
3264
|
/**
|
|
3185
3265
|
* @public
|
|
3186
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "
|
|
3266
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}. Amazon Connect users with the specified tags will be notified.</p>
|
|
3187
3267
|
*/
|
|
3188
3268
|
UserTags?: Record<string, string>;
|
|
3189
3269
|
/**
|
|
@@ -3294,6 +3374,17 @@ export interface TaskActionDefinition {
|
|
|
3294
3374
|
*/
|
|
3295
3375
|
References?: Record<string, Reference>;
|
|
3296
3376
|
}
|
|
3377
|
+
/**
|
|
3378
|
+
* @public
|
|
3379
|
+
* <p>The <code>UpdateCase</code> action definition.</p>
|
|
3380
|
+
*/
|
|
3381
|
+
export interface UpdateCaseActionDefinition {
|
|
3382
|
+
/**
|
|
3383
|
+
* @public
|
|
3384
|
+
* <p>An array of objects with <code>Field ID</code> and Value data.</p>
|
|
3385
|
+
*/
|
|
3386
|
+
Fields: FieldValue[] | undefined;
|
|
3387
|
+
}
|
|
3297
3388
|
/**
|
|
3298
3389
|
* @public
|
|
3299
3390
|
* <p>Information about the action to be performed when a rule is triggered.</p>
|
|
@@ -3343,6 +3434,26 @@ export interface RuleAction {
|
|
|
3343
3434
|
* </p>
|
|
3344
3435
|
*/
|
|
3345
3436
|
SendNotificationAction?: SendNotificationActionDefinition;
|
|
3437
|
+
/**
|
|
3438
|
+
* @public
|
|
3439
|
+
* <p>Information about the create case action.</p>
|
|
3440
|
+
* <p>Supported only for <code>TriggerEventSource</code> values:
|
|
3441
|
+
* <code>OnPostCallAnalysisAvailable</code> | <code>OnPostChatAnalysisAvailable</code>.</p>
|
|
3442
|
+
*/
|
|
3443
|
+
CreateCaseAction?: CreateCaseActionDefinition;
|
|
3444
|
+
/**
|
|
3445
|
+
* @public
|
|
3446
|
+
* <p>Information about the update case action.</p>
|
|
3447
|
+
* <p>Supported only for <code>TriggerEventSource</code> values: <code>OnCaseCreate</code> |
|
|
3448
|
+
* <code>OnCaseUpdate</code>.</p>
|
|
3449
|
+
*/
|
|
3450
|
+
UpdateCaseAction?: UpdateCaseActionDefinition;
|
|
3451
|
+
/**
|
|
3452
|
+
* @public
|
|
3453
|
+
* <p>Information about the end associated tasks action.</p>
|
|
3454
|
+
* <p>Supported only for <code>TriggerEventSource</code> values: <code>OnCaseUpdate</code>.</p>
|
|
3455
|
+
*/
|
|
3456
|
+
EndAssociatedTasksAction?: EndAssociatedTasksActionDefinition;
|
|
3346
3457
|
}
|
|
3347
3458
|
/**
|
|
3348
3459
|
* @public
|
|
@@ -3361,6 +3472,8 @@ export type RulePublishStatus = (typeof RulePublishStatus)[keyof typeof RulePubl
|
|
|
3361
3472
|
* @enum
|
|
3362
3473
|
*/
|
|
3363
3474
|
export declare const EventSourceName: {
|
|
3475
|
+
readonly OnCaseCreate: "OnCaseCreate";
|
|
3476
|
+
readonly OnCaseUpdate: "OnCaseUpdate";
|
|
3364
3477
|
readonly OnContactEvaluationSubmit: "OnContactEvaluationSubmit";
|
|
3365
3478
|
readonly OnMetricDataUpdate: "OnMetricDataUpdate";
|
|
3366
3479
|
readonly OnPostCallAnalysisAvailable: "OnPostCallAnalysisAvailable";
|
|
@@ -3497,7 +3610,7 @@ export interface CreateSecurityProfileRequest {
|
|
|
3497
3610
|
InstanceId: string | undefined;
|
|
3498
3611
|
/**
|
|
3499
3612
|
* @public
|
|
3500
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "
|
|
3613
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
3501
3614
|
*/
|
|
3502
3615
|
Tags?: Record<string, string>;
|
|
3503
3616
|
/**
|
|
@@ -3837,7 +3950,7 @@ export interface CreateTrafficDistributionGroupRequest {
|
|
|
3837
3950
|
ClientToken?: string;
|
|
3838
3951
|
/**
|
|
3839
3952
|
* @public
|
|
3840
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "
|
|
3953
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
3841
3954
|
*/
|
|
3842
3955
|
Tags?: Record<string, string>;
|
|
3843
3956
|
}
|
|
@@ -3905,7 +4018,7 @@ export interface CreateUseCaseRequest {
|
|
|
3905
4018
|
UseCaseType: UseCaseType | undefined;
|
|
3906
4019
|
/**
|
|
3907
4020
|
* @public
|
|
3908
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "
|
|
4021
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
3909
4022
|
*/
|
|
3910
4023
|
Tags?: Record<string, string>;
|
|
3911
4024
|
}
|
|
@@ -4063,7 +4176,7 @@ export interface CreateUserRequest {
|
|
|
4063
4176
|
InstanceId: string | undefined;
|
|
4064
4177
|
/**
|
|
4065
4178
|
* @public
|
|
4066
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "
|
|
4179
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
4067
4180
|
*/
|
|
4068
4181
|
Tags?: Record<string, string>;
|
|
4069
4182
|
}
|
|
@@ -4104,7 +4217,7 @@ export interface CreateUserHierarchyGroupRequest {
|
|
|
4104
4217
|
InstanceId: string | undefined;
|
|
4105
4218
|
/**
|
|
4106
4219
|
* @public
|
|
4107
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "
|
|
4220
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
4108
4221
|
*/
|
|
4109
4222
|
Tags?: Record<string, string>;
|
|
4110
4223
|
}
|
|
@@ -4449,7 +4562,7 @@ export interface CreateVocabularyRequest {
|
|
|
4449
4562
|
Content: string | undefined;
|
|
4450
4563
|
/**
|
|
4451
4564
|
* @public
|
|
4452
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "
|
|
4565
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
4453
4566
|
*/
|
|
4454
4567
|
Tags?: Record<string, string>;
|
|
4455
4568
|
}
|
|
@@ -5047,6 +5160,26 @@ export interface Contact {
|
|
|
5047
5160
|
* <p>The timestamp when contact was last updated.</p>
|
|
5048
5161
|
*/
|
|
5049
5162
|
LastUpdateTimestamp?: Date;
|
|
5163
|
+
/**
|
|
5164
|
+
* @public
|
|
5165
|
+
* <p>The timestamp when the contact was last paused.</p>
|
|
5166
|
+
*/
|
|
5167
|
+
LastPausedTimestamp?: Date;
|
|
5168
|
+
/**
|
|
5169
|
+
* @public
|
|
5170
|
+
* <p>The timestamp when the contact was last resumed.</p>
|
|
5171
|
+
*/
|
|
5172
|
+
LastResumedTimestamp?: Date;
|
|
5173
|
+
/**
|
|
5174
|
+
* @public
|
|
5175
|
+
* <p>Total pause count for a contact.</p>
|
|
5176
|
+
*/
|
|
5177
|
+
TotalPauseCount?: number;
|
|
5178
|
+
/**
|
|
5179
|
+
* @public
|
|
5180
|
+
* <p>Total pause duration for a contact in seconds.</p>
|
|
5181
|
+
*/
|
|
5182
|
+
TotalPauseDurationInSeconds?: number;
|
|
5050
5183
|
/**
|
|
5051
5184
|
* @public
|
|
5052
5185
|
* <p>The timestamp, in Unix epoch time format, at which to start running the inbound flow.
|
|
@@ -5064,6 +5197,11 @@ export interface Contact {
|
|
|
5064
5197
|
* <p>Information about Amazon Connect Wisdom.</p>
|
|
5065
5198
|
*/
|
|
5066
5199
|
WisdomInfo?: WisdomInfo;
|
|
5200
|
+
/**
|
|
5201
|
+
* @public
|
|
5202
|
+
* <p>Tags associated with the contact. This contains both Amazon Web Services generated and user-defined tags.</p>
|
|
5203
|
+
*/
|
|
5204
|
+
Tags?: Record<string, string>;
|
|
5067
5205
|
}
|
|
5068
5206
|
/**
|
|
5069
5207
|
* @public
|
|
@@ -5286,7 +5424,7 @@ export interface Evaluation {
|
|
|
5286
5424
|
LastModifiedTime: Date | undefined;
|
|
5287
5425
|
/**
|
|
5288
5426
|
* @public
|
|
5289
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "
|
|
5427
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
5290
5428
|
*/
|
|
5291
5429
|
Tags?: Record<string, string>;
|
|
5292
5430
|
}
|
|
@@ -5375,7 +5513,7 @@ export interface ContactFlow {
|
|
|
5375
5513
|
Content?: string;
|
|
5376
5514
|
/**
|
|
5377
5515
|
* @public
|
|
5378
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "
|
|
5516
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
5379
5517
|
*/
|
|
5380
5518
|
Tags?: Record<string, string>;
|
|
5381
5519
|
}
|
|
@@ -5471,7 +5609,7 @@ export interface ContactFlowModule {
|
|
|
5471
5609
|
Status?: ContactFlowModuleStatus;
|
|
5472
5610
|
/**
|
|
5473
5611
|
* @public
|
|
5474
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "
|
|
5612
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
5475
5613
|
*/
|
|
5476
5614
|
Tags?: Record<string, string>;
|
|
5477
5615
|
}
|
|
@@ -5569,7 +5707,7 @@ export interface HoursOfOperation {
|
|
|
5569
5707
|
Config?: HoursOfOperationConfig[];
|
|
5570
5708
|
/**
|
|
5571
5709
|
* @public
|
|
5572
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "
|
|
5710
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
5573
5711
|
*/
|
|
5574
5712
|
Tags?: Record<string, string>;
|
|
5575
5713
|
/**
|
|
@@ -6172,7 +6310,7 @@ export interface ClaimedPhoneNumberSummary {
|
|
|
6172
6310
|
InstanceId?: string;
|
|
6173
6311
|
/**
|
|
6174
6312
|
* @public
|
|
6175
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "
|
|
6313
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
6176
6314
|
*/
|
|
6177
6315
|
Tags?: Record<string, string>;
|
|
6178
6316
|
/**
|
|
@@ -6239,155 +6377,6 @@ export interface DescribePromptRequest {
|
|
|
6239
6377
|
*/
|
|
6240
6378
|
PromptId: string | undefined;
|
|
6241
6379
|
}
|
|
6242
|
-
/**
|
|
6243
|
-
* @public
|
|
6244
|
-
* <p>Information about a prompt.</p>
|
|
6245
|
-
*/
|
|
6246
|
-
export interface Prompt {
|
|
6247
|
-
/**
|
|
6248
|
-
* @public
|
|
6249
|
-
* <p>The Amazon Resource Name (ARN) of the prompt.</p>
|
|
6250
|
-
*/
|
|
6251
|
-
PromptARN?: string;
|
|
6252
|
-
/**
|
|
6253
|
-
* @public
|
|
6254
|
-
* <p>A unique identifier for the prompt.</p>
|
|
6255
|
-
*/
|
|
6256
|
-
PromptId?: string;
|
|
6257
|
-
/**
|
|
6258
|
-
* @public
|
|
6259
|
-
* <p>The name of the prompt.</p>
|
|
6260
|
-
*/
|
|
6261
|
-
Name?: string;
|
|
6262
|
-
/**
|
|
6263
|
-
* @public
|
|
6264
|
-
* <p>The description of the prompt.</p>
|
|
6265
|
-
*/
|
|
6266
|
-
Description?: string;
|
|
6267
|
-
/**
|
|
6268
|
-
* @public
|
|
6269
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
6270
|
-
*/
|
|
6271
|
-
Tags?: Record<string, string>;
|
|
6272
|
-
/**
|
|
6273
|
-
* @public
|
|
6274
|
-
* <p>The timestamp when this resource was last modified.</p>
|
|
6275
|
-
*/
|
|
6276
|
-
LastModifiedTime?: Date;
|
|
6277
|
-
/**
|
|
6278
|
-
* @public
|
|
6279
|
-
* <p>The Amazon Web Services Region where this resource was last modified.</p>
|
|
6280
|
-
*/
|
|
6281
|
-
LastModifiedRegion?: string;
|
|
6282
|
-
}
|
|
6283
|
-
/**
|
|
6284
|
-
* @public
|
|
6285
|
-
*/
|
|
6286
|
-
export interface DescribePromptResponse {
|
|
6287
|
-
/**
|
|
6288
|
-
* @public
|
|
6289
|
-
* <p>Information about the prompt.</p>
|
|
6290
|
-
*/
|
|
6291
|
-
Prompt?: Prompt;
|
|
6292
|
-
}
|
|
6293
|
-
/**
|
|
6294
|
-
* @public
|
|
6295
|
-
*/
|
|
6296
|
-
export interface DescribeQueueRequest {
|
|
6297
|
-
/**
|
|
6298
|
-
* @public
|
|
6299
|
-
* <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>
|
|
6300
|
-
*/
|
|
6301
|
-
InstanceId: string | undefined;
|
|
6302
|
-
/**
|
|
6303
|
-
* @public
|
|
6304
|
-
* <p>The identifier for the queue.</p>
|
|
6305
|
-
*/
|
|
6306
|
-
QueueId: string | undefined;
|
|
6307
|
-
}
|
|
6308
|
-
/**
|
|
6309
|
-
* @public
|
|
6310
|
-
* @enum
|
|
6311
|
-
*/
|
|
6312
|
-
export declare const QueueStatus: {
|
|
6313
|
-
readonly DISABLED: "DISABLED";
|
|
6314
|
-
readonly ENABLED: "ENABLED";
|
|
6315
|
-
};
|
|
6316
|
-
/**
|
|
6317
|
-
* @public
|
|
6318
|
-
*/
|
|
6319
|
-
export type QueueStatus = (typeof QueueStatus)[keyof typeof QueueStatus];
|
|
6320
|
-
/**
|
|
6321
|
-
* @public
|
|
6322
|
-
* <p>Contains information about a queue.</p>
|
|
6323
|
-
*/
|
|
6324
|
-
export interface Queue {
|
|
6325
|
-
/**
|
|
6326
|
-
* @public
|
|
6327
|
-
* <p>The name of the queue.</p>
|
|
6328
|
-
*/
|
|
6329
|
-
Name?: string;
|
|
6330
|
-
/**
|
|
6331
|
-
* @public
|
|
6332
|
-
* <p>The Amazon Resource Name (ARN) for the queue.</p>
|
|
6333
|
-
*/
|
|
6334
|
-
QueueArn?: string;
|
|
6335
|
-
/**
|
|
6336
|
-
* @public
|
|
6337
|
-
* <p>The identifier for the queue.</p>
|
|
6338
|
-
*/
|
|
6339
|
-
QueueId?: string;
|
|
6340
|
-
/**
|
|
6341
|
-
* @public
|
|
6342
|
-
* <p>The description of the queue.</p>
|
|
6343
|
-
*/
|
|
6344
|
-
Description?: string;
|
|
6345
|
-
/**
|
|
6346
|
-
* @public
|
|
6347
|
-
* <p>The outbound caller ID name, number, and outbound whisper flow.</p>
|
|
6348
|
-
*/
|
|
6349
|
-
OutboundCallerConfig?: OutboundCallerConfig;
|
|
6350
|
-
/**
|
|
6351
|
-
* @public
|
|
6352
|
-
* <p>The identifier for the hours of operation.</p>
|
|
6353
|
-
*/
|
|
6354
|
-
HoursOfOperationId?: string;
|
|
6355
|
-
/**
|
|
6356
|
-
* @public
|
|
6357
|
-
* <p>The maximum number of contacts that can be in the queue before it is considered full.</p>
|
|
6358
|
-
*/
|
|
6359
|
-
MaxContacts?: number;
|
|
6360
|
-
/**
|
|
6361
|
-
* @public
|
|
6362
|
-
* <p>The status of the queue.</p>
|
|
6363
|
-
*/
|
|
6364
|
-
Status?: QueueStatus;
|
|
6365
|
-
/**
|
|
6366
|
-
* @public
|
|
6367
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
6368
|
-
*/
|
|
6369
|
-
Tags?: Record<string, string>;
|
|
6370
|
-
/**
|
|
6371
|
-
* @public
|
|
6372
|
-
* <p>The timestamp when this resource was last modified.</p>
|
|
6373
|
-
*/
|
|
6374
|
-
LastModifiedTime?: Date;
|
|
6375
|
-
/**
|
|
6376
|
-
* @public
|
|
6377
|
-
* <p>The Amazon Web Services Region where this resource was last modified.</p>
|
|
6378
|
-
*/
|
|
6379
|
-
LastModifiedRegion?: string;
|
|
6380
|
-
}
|
|
6381
|
-
/**
|
|
6382
|
-
* @public
|
|
6383
|
-
*/
|
|
6384
|
-
export interface DescribeQueueResponse {
|
|
6385
|
-
/**
|
|
6386
|
-
* @public
|
|
6387
|
-
* <p>The name of the queue.</p>
|
|
6388
|
-
*/
|
|
6389
|
-
Queue?: Queue;
|
|
6390
|
-
}
|
|
6391
6380
|
/**
|
|
6392
6381
|
* @internal
|
|
6393
6382
|
*/
|