cdk-lambda-subminute 2.0.325 → 2.0.327
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/.jsii +16 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/b2bi-2022-06-23.examples.json +0 -709
- package/node_modules/aws-sdk/apis/billingconductor-2021-07-30.min.json +84 -20
- package/node_modules/aws-sdk/apis/cloud9-2017-09-23.examples.json +1 -1
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +457 -269
- package/node_modules/aws-sdk/apis/firehose-2015-08-04.min.json +85 -65
- package/node_modules/aws-sdk/apis/gamelift-2015-10-01.min.json +4 -1
- package/node_modules/aws-sdk/apis/iot-2015-05-28.min.json +479 -317
- package/node_modules/aws-sdk/apis/metadata.json +4 -0
- package/node_modules/aws-sdk/apis/neptune-graph-2023-11-29.examples.json +5 -0
- package/node_modules/aws-sdk/apis/neptune-graph-2023-11-29.min.json +1286 -0
- package/node_modules/aws-sdk/apis/neptune-graph-2023-11-29.paginators.json +28 -0
- package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +548 -466
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +1284 -1266
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/appstream.d.ts +1 -1
- package/node_modules/aws-sdk/clients/b2bi.d.ts +45 -45
- package/node_modules/aws-sdk/clients/billingconductor.d.ts +98 -3
- package/node_modules/aws-sdk/clients/cloud9.d.ts +1 -1
- package/node_modules/aws-sdk/clients/connect.d.ts +250 -42
- package/node_modules/aws-sdk/clients/controltower.d.ts +3 -3
- package/node_modules/aws-sdk/clients/firehose.d.ts +24 -0
- package/node_modules/aws-sdk/clients/gamelift.d.ts +14 -10
- package/node_modules/aws-sdk/clients/iot.d.ts +173 -1
- package/node_modules/aws-sdk/clients/kms.d.ts +101 -101
- package/node_modules/aws-sdk/clients/neptunegraph.d.ts +1394 -0
- package/node_modules/aws-sdk/clients/neptunegraph.js +19 -0
- package/node_modules/aws-sdk/clients/opensearch.d.ts +23 -23
- package/node_modules/aws-sdk/clients/quicksight.d.ts +75 -3
- package/node_modules/aws-sdk/clients/rds.d.ts +1 -1
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +234 -212
- package/node_modules/aws-sdk/clients/workspaces.d.ts +3 -3
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +69 -11
- package/node_modules/aws-sdk/dist/aws-sdk.js +1032 -655
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +83 -83
- package/node_modules/aws-sdk/dist-tools/service-collector.js +1 -1
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/services/neptunegraph.js +14 -0
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +3 -3
@@ -1243,6 +1243,14 @@ declare class Connect extends Service {
|
|
1243
1243
|
* Initiates silent monitoring of a contact. The Contact Control Panel (CCP) of the user specified by userId will be set to silent monitoring mode on the contact.
|
1244
1244
|
*/
|
1245
1245
|
monitorContact(callback?: (err: AWSError, data: Connect.Types.MonitorContactResponse) => void): Request<Connect.Types.MonitorContactResponse, AWSError>;
|
1246
|
+
/**
|
1247
|
+
* Allows pausing an ongoing task contact.
|
1248
|
+
*/
|
1249
|
+
pauseContact(params: Connect.Types.PauseContactRequest, callback?: (err: AWSError, data: Connect.Types.PauseContactResponse) => void): Request<Connect.Types.PauseContactResponse, AWSError>;
|
1250
|
+
/**
|
1251
|
+
* Allows pausing an ongoing task contact.
|
1252
|
+
*/
|
1253
|
+
pauseContact(callback?: (err: AWSError, data: Connect.Types.PauseContactResponse) => void): Request<Connect.Types.PauseContactResponse, AWSError>;
|
1246
1254
|
/**
|
1247
1255
|
* Changes the current status of a user or agent in Amazon Connect. If the agent is currently handling a contact, this sets the agent's next status. For more information, see Agent status and Set your next status in the Amazon Connect Administrator Guide.
|
1248
1256
|
*/
|
@@ -1267,6 +1275,14 @@ declare class Connect extends Service {
|
|
1267
1275
|
* Replicates an Amazon Connect instance in the specified Amazon Web Services Region and copies configuration information for Amazon Connect resources across Amazon Web Services Regions. For more information about replicating an Amazon Connect instance, see Create a replica of your existing Amazon Connect instance in the Amazon Connect Administrator Guide.
|
1268
1276
|
*/
|
1269
1277
|
replicateInstance(callback?: (err: AWSError, data: Connect.Types.ReplicateInstanceResponse) => void): Request<Connect.Types.ReplicateInstanceResponse, AWSError>;
|
1278
|
+
/**
|
1279
|
+
* Allows resuming a task contact in a paused state.
|
1280
|
+
*/
|
1281
|
+
resumeContact(params: Connect.Types.ResumeContactRequest, callback?: (err: AWSError, data: Connect.Types.ResumeContactResponse) => void): Request<Connect.Types.ResumeContactResponse, AWSError>;
|
1282
|
+
/**
|
1283
|
+
* Allows resuming a task contact in a paused state.
|
1284
|
+
*/
|
1285
|
+
resumeContact(callback?: (err: AWSError, data: Connect.Types.ResumeContactResponse) => void): Request<Connect.Types.ResumeContactResponse, AWSError>;
|
1270
1286
|
/**
|
1271
1287
|
* When a contact is being recorded, and the recording has been suspended using SuspendContactRecording, this API resumes recording whatever recording is selected in the flow configuration: call, screen, or both. If only call recording or only screen recording is enabled, then it would resume. Voice and screen recordings are supported.
|
1272
1288
|
*/
|
@@ -1459,6 +1475,14 @@ declare class Connect extends Service {
|
|
1459
1475
|
* When a contact is being recorded, this API suspends recording whatever is selected in the flow configuration: call, screen, or both. If only call recording or only screen recording is enabled, then it would be suspended. For example, you might suspend the screen recording while collecting sensitive information, such as a credit card number. Then use ResumeContactRecording to restart recording the screen. The period of time that the recording is suspended is filled with silence in the final recording. Voice and screen recordings are supported.
|
1460
1476
|
*/
|
1461
1477
|
suspendContactRecording(callback?: (err: AWSError, data: Connect.Types.SuspendContactRecordingResponse) => void): Request<Connect.Types.SuspendContactRecordingResponse, AWSError>;
|
1478
|
+
/**
|
1479
|
+
* Adds the specified tags to the contact resource. For more information about this API is used, see Set up granular billing for a detailed view of your Amazon Connect usage.
|
1480
|
+
*/
|
1481
|
+
tagContact(params: Connect.Types.TagContactRequest, callback?: (err: AWSError, data: Connect.Types.TagContactResponse) => void): Request<Connect.Types.TagContactResponse, AWSError>;
|
1482
|
+
/**
|
1483
|
+
* Adds the specified tags to the contact resource. For more information about this API is used, see Set up granular billing for a detailed view of your Amazon Connect usage.
|
1484
|
+
*/
|
1485
|
+
tagContact(callback?: (err: AWSError, data: Connect.Types.TagContactResponse) => void): Request<Connect.Types.TagContactResponse, AWSError>;
|
1462
1486
|
/**
|
1463
1487
|
* Adds the specified tags to the specified resource. Some of the supported resource types are agents, routing profiles, queues, quick connects, contact flows, agent statuses, hours of operation, phone numbers, security profiles, and task templates. For a complete list, see Tagging resources in Amazon Connect. For sample policies that use tags, see Amazon Connect Identity-Based Policy Examples in the Amazon Connect Administrator Guide.
|
1464
1488
|
*/
|
@@ -1475,6 +1499,14 @@ declare class Connect extends Service {
|
|
1475
1499
|
* Transfers contacts from one agent or queue to another agent or queue at any point after a contact is created. You can transfer a contact to another queue by providing the flow which orchestrates the contact to the destination queue. This gives you more control over contact handling and helps you adhere to the service level agreement (SLA) guaranteed to your customers. Note the following requirements: Transfer is supported for only TASK contacts. Do not use both QueueId and UserId in the same call. The following flow types are supported: Inbound flow, Transfer to agent flow, and Transfer to queue flow. The TransferContact API can be called only on active contacts. A contact cannot be transferred more than 11 times.
|
1476
1500
|
*/
|
1477
1501
|
transferContact(callback?: (err: AWSError, data: Connect.Types.TransferContactResponse) => void): Request<Connect.Types.TransferContactResponse, AWSError>;
|
1502
|
+
/**
|
1503
|
+
* Removes the specified tags from the contact resource. For more information about this API is used, see Set up granular billing for a detailed view of your Amazon Connect usage.
|
1504
|
+
*/
|
1505
|
+
untagContact(params: Connect.Types.UntagContactRequest, callback?: (err: AWSError, data: Connect.Types.UntagContactResponse) => void): Request<Connect.Types.UntagContactResponse, AWSError>;
|
1506
|
+
/**
|
1507
|
+
* Removes the specified tags from the contact resource. For more information about this API is used, see Set up granular billing for a detailed view of your Amazon Connect usage.
|
1508
|
+
*/
|
1509
|
+
untagContact(callback?: (err: AWSError, data: Connect.Types.UntagContactResponse) => void): Request<Connect.Types.UntagContactResponse, AWSError>;
|
1478
1510
|
/**
|
1479
1511
|
* Removes the specified tags from the specified resource.
|
1480
1512
|
*/
|
@@ -1838,7 +1870,7 @@ declare namespace Connect {
|
|
1838
1870
|
*/
|
1839
1871
|
ActionType: ActionType;
|
1840
1872
|
}
|
1841
|
-
export type ActionType = "CREATE_TASK"|"ASSIGN_CONTACT_CATEGORY"|"GENERATE_EVENTBRIDGE_EVENT"|"SEND_NOTIFICATION"|string;
|
1873
|
+
export type ActionType = "CREATE_TASK"|"ASSIGN_CONTACT_CATEGORY"|"GENERATE_EVENTBRIDGE_EVENT"|"SEND_NOTIFICATION"|"CREATE_CASE"|"UPDATE_CASE"|"END_ASSOCIATED_TASKS"|string;
|
1842
1874
|
export interface ActivateEvaluationFormRequest {
|
1843
1875
|
/**
|
1844
1876
|
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
|
@@ -1913,8 +1945,13 @@ declare namespace Connect {
|
|
1913
1945
|
* The timestamp when the contact was connected to the agent.
|
1914
1946
|
*/
|
1915
1947
|
ConnectedToAgentTimestamp?: timestamp;
|
1948
|
+
/**
|
1949
|
+
* Agent pause duration for a contact in seconds.
|
1950
|
+
*/
|
1951
|
+
AgentPauseDurationInSeconds?: AgentPauseDurationInSeconds;
|
1916
1952
|
}
|
1917
1953
|
export type AgentLastName = string;
|
1954
|
+
export type AgentPauseDurationInSeconds = number;
|
1918
1955
|
export type AgentResourceId = string;
|
1919
1956
|
export interface AgentStatus {
|
1920
1957
|
/**
|
@@ -1946,7 +1983,7 @@ declare namespace Connect {
|
|
1946
1983
|
*/
|
1947
1984
|
State?: AgentStatusState;
|
1948
1985
|
/**
|
1949
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
1986
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
1950
1987
|
*/
|
1951
1988
|
Tags?: TagMap;
|
1952
1989
|
/**
|
@@ -2500,7 +2537,7 @@ declare namespace Connect {
|
|
2500
2537
|
*/
|
2501
2538
|
PhoneNumberDescription?: PhoneNumberDescription;
|
2502
2539
|
/**
|
2503
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
2540
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
2504
2541
|
*/
|
2505
2542
|
Tags?: TagMap;
|
2506
2543
|
/**
|
@@ -2552,7 +2589,7 @@ declare namespace Connect {
|
|
2552
2589
|
*/
|
2553
2590
|
InstanceId?: InstanceId;
|
2554
2591
|
/**
|
2555
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
2592
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
2556
2593
|
*/
|
2557
2594
|
Tags?: TagMap;
|
2558
2595
|
/**
|
@@ -2631,6 +2668,22 @@ declare namespace Connect {
|
|
2631
2668
|
* The timestamp when contact was last updated.
|
2632
2669
|
*/
|
2633
2670
|
LastUpdateTimestamp?: timestamp;
|
2671
|
+
/**
|
2672
|
+
* The timestamp when the contact was last paused.
|
2673
|
+
*/
|
2674
|
+
LastPausedTimestamp?: timestamp;
|
2675
|
+
/**
|
2676
|
+
* The timestamp when the contact was last resumed.
|
2677
|
+
*/
|
2678
|
+
LastResumedTimestamp?: timestamp;
|
2679
|
+
/**
|
2680
|
+
* Total pause count for a contact.
|
2681
|
+
*/
|
2682
|
+
TotalPauseCount?: TotalPauseCount;
|
2683
|
+
/**
|
2684
|
+
* Total pause duration for a contact in seconds.
|
2685
|
+
*/
|
2686
|
+
TotalPauseDurationInSeconds?: TotalPauseDurationInSeconds;
|
2634
2687
|
/**
|
2635
2688
|
* The timestamp, in Unix epoch time format, at which to start running the inbound flow.
|
2636
2689
|
*/
|
@@ -2643,6 +2696,10 @@ declare namespace Connect {
|
|
2643
2696
|
* Information about Amazon Connect Wisdom.
|
2644
2697
|
*/
|
2645
2698
|
WisdomInfo?: WisdomInfo;
|
2699
|
+
/**
|
2700
|
+
* Tags associated with the contact. This contains both Amazon Web Services generated and user-defined tags.
|
2701
|
+
*/
|
2702
|
+
Tags?: ContactTagMap;
|
2646
2703
|
}
|
2647
2704
|
export interface ContactDataRequest {
|
2648
2705
|
/**
|
@@ -2707,7 +2764,7 @@ declare namespace Connect {
|
|
2707
2764
|
*/
|
2708
2765
|
Content?: ContactFlowContent;
|
2709
2766
|
/**
|
2710
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
2767
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
2711
2768
|
*/
|
2712
2769
|
Tags?: TagMap;
|
2713
2770
|
}
|
@@ -2744,7 +2801,7 @@ declare namespace Connect {
|
|
2744
2801
|
*/
|
2745
2802
|
Status?: ContactFlowModuleStatus;
|
2746
2803
|
/**
|
2747
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
2804
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
2748
2805
|
*/
|
2749
2806
|
Tags?: TagMap;
|
2750
2807
|
}
|
@@ -2805,6 +2862,10 @@ declare namespace Connect {
|
|
2805
2862
|
export type ContactReferences = {[key: string]: Reference};
|
2806
2863
|
export type ContactState = "INCOMING"|"PENDING"|"CONNECTING"|"CONNECTED"|"CONNECTED_ONHOLD"|"MISSED"|"ERROR"|"ENDED"|"REJECTED"|string;
|
2807
2864
|
export type ContactStates = ContactState[];
|
2865
|
+
export type ContactTagKey = string;
|
2866
|
+
export type ContactTagKeys = ContactTagKey[];
|
2867
|
+
export type ContactTagMap = {[key: string]: ContactTagValue};
|
2868
|
+
export type ContactTagValue = string;
|
2808
2869
|
export type Content = string;
|
2809
2870
|
export type ContentType = string;
|
2810
2871
|
export interface ControlPlaneTagFilter {
|
@@ -2843,7 +2904,7 @@ declare namespace Connect {
|
|
2843
2904
|
*/
|
2844
2905
|
DisplayOrder?: AgentStatusOrderNumber;
|
2845
2906
|
/**
|
2846
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
2907
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
2847
2908
|
*/
|
2848
2909
|
Tags?: TagMap;
|
2849
2910
|
}
|
@@ -2857,6 +2918,16 @@ declare namespace Connect {
|
|
2857
2918
|
*/
|
2858
2919
|
AgentStatusId?: AgentStatusId;
|
2859
2920
|
}
|
2921
|
+
export interface CreateCaseActionDefinition {
|
2922
|
+
/**
|
2923
|
+
* An array of objects with Field ID and Value data.
|
2924
|
+
*/
|
2925
|
+
Fields: FieldValues;
|
2926
|
+
/**
|
2927
|
+
* A unique identifier of a template.
|
2928
|
+
*/
|
2929
|
+
TemplateId: TemplateId;
|
2930
|
+
}
|
2860
2931
|
export interface CreateContactFlowModuleRequest {
|
2861
2932
|
/**
|
2862
2933
|
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
|
@@ -2875,7 +2946,7 @@ declare namespace Connect {
|
|
2875
2946
|
*/
|
2876
2947
|
Content: ContactFlowModuleContent;
|
2877
2948
|
/**
|
2878
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
2949
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
2879
2950
|
*/
|
2880
2951
|
Tags?: TagMap;
|
2881
2952
|
/**
|
@@ -2915,7 +2986,7 @@ declare namespace Connect {
|
|
2915
2986
|
*/
|
2916
2987
|
Content: ContactFlowContent;
|
2917
2988
|
/**
|
2918
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
2989
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
2919
2990
|
*/
|
2920
2991
|
Tags?: TagMap;
|
2921
2992
|
}
|
@@ -2987,7 +3058,7 @@ declare namespace Connect {
|
|
2987
3058
|
*/
|
2988
3059
|
Config: HoursOfOperationConfigList;
|
2989
3060
|
/**
|
2990
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
3061
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
2991
3062
|
*/
|
2992
3063
|
Tags?: TagMap;
|
2993
3064
|
}
|
@@ -3067,7 +3138,7 @@ declare namespace Connect {
|
|
3067
3138
|
*/
|
3068
3139
|
SourceType?: SourceType;
|
3069
3140
|
/**
|
3070
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
3141
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
3071
3142
|
*/
|
3072
3143
|
Tags?: TagMap;
|
3073
3144
|
}
|
@@ -3155,7 +3226,7 @@ declare namespace Connect {
|
|
3155
3226
|
*/
|
3156
3227
|
S3Uri: S3Uri;
|
3157
3228
|
/**
|
3158
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
3229
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
3159
3230
|
*/
|
3160
3231
|
Tags?: TagMap;
|
3161
3232
|
}
|
@@ -3199,7 +3270,7 @@ declare namespace Connect {
|
|
3199
3270
|
*/
|
3200
3271
|
QuickConnectIds?: QuickConnectsList;
|
3201
3272
|
/**
|
3202
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
3273
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
3203
3274
|
*/
|
3204
3275
|
Tags?: TagMap;
|
3205
3276
|
}
|
@@ -3231,7 +3302,7 @@ declare namespace Connect {
|
|
3231
3302
|
*/
|
3232
3303
|
QuickConnectConfig: QuickConnectConfig;
|
3233
3304
|
/**
|
3234
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
3305
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
3235
3306
|
*/
|
3236
3307
|
Tags?: TagMap;
|
3237
3308
|
}
|
@@ -3271,7 +3342,7 @@ declare namespace Connect {
|
|
3271
3342
|
*/
|
3272
3343
|
MediaConcurrencies: MediaConcurrencies;
|
3273
3344
|
/**
|
3274
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
3345
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
3275
3346
|
*/
|
3276
3347
|
Tags?: TagMap;
|
3277
3348
|
/**
|
@@ -3348,7 +3419,7 @@ declare namespace Connect {
|
|
3348
3419
|
*/
|
3349
3420
|
InstanceId: InstanceId;
|
3350
3421
|
/**
|
3351
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
3422
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
3352
3423
|
*/
|
3353
3424
|
Tags?: TagMap;
|
3354
3425
|
/**
|
@@ -3440,7 +3511,7 @@ declare namespace Connect {
|
|
3440
3511
|
*/
|
3441
3512
|
ClientToken?: ClientToken;
|
3442
3513
|
/**
|
3443
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
3514
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
3444
3515
|
*/
|
3445
3516
|
Tags?: TagMap;
|
3446
3517
|
}
|
@@ -3468,7 +3539,7 @@ declare namespace Connect {
|
|
3468
3539
|
*/
|
3469
3540
|
UseCaseType: UseCaseType;
|
3470
3541
|
/**
|
3471
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
3542
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
3472
3543
|
*/
|
3473
3544
|
Tags?: TagMap;
|
3474
3545
|
}
|
@@ -3496,7 +3567,7 @@ declare namespace Connect {
|
|
3496
3567
|
*/
|
3497
3568
|
InstanceId: InstanceId;
|
3498
3569
|
/**
|
3499
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
3570
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
3500
3571
|
*/
|
3501
3572
|
Tags?: TagMap;
|
3502
3573
|
}
|
@@ -3548,7 +3619,7 @@ declare namespace Connect {
|
|
3548
3619
|
*/
|
3549
3620
|
InstanceId: InstanceId;
|
3550
3621
|
/**
|
3551
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
3622
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
3552
3623
|
*/
|
3553
3624
|
Tags?: TagMap;
|
3554
3625
|
}
|
@@ -3644,7 +3715,7 @@ declare namespace Connect {
|
|
3644
3715
|
*/
|
3645
3716
|
Content: VocabularyContent;
|
3646
3717
|
/**
|
3647
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
3718
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
3648
3719
|
*/
|
3649
3720
|
Tags?: TagMap;
|
3650
3721
|
}
|
@@ -4601,6 +4672,7 @@ declare namespace Connect {
|
|
4601
4672
|
Percentage: Percentage;
|
4602
4673
|
}
|
4603
4674
|
export type DistributionList = Distribution[];
|
4675
|
+
export type Double = number;
|
4604
4676
|
export type Email = string;
|
4605
4677
|
export interface EmailReference {
|
4606
4678
|
/**
|
@@ -4612,6 +4684,8 @@ declare namespace Connect {
|
|
4612
4684
|
*/
|
4613
4685
|
Value?: ReferenceValue;
|
4614
4686
|
}
|
4687
|
+
export interface EmptyFieldValue {
|
4688
|
+
}
|
4615
4689
|
export interface EncryptionConfig {
|
4616
4690
|
/**
|
4617
4691
|
* The type of encryption.
|
@@ -4623,6 +4697,8 @@ declare namespace Connect {
|
|
4623
4697
|
KeyId: KeyId;
|
4624
4698
|
}
|
4625
4699
|
export type EncryptionType = "KMS"|string;
|
4700
|
+
export interface EndAssociatedTasksActionDefinition {
|
4701
|
+
}
|
4626
4702
|
export interface Endpoint {
|
4627
4703
|
/**
|
4628
4704
|
* Type of the endpoint.
|
@@ -4684,7 +4760,7 @@ declare namespace Connect {
|
|
4684
4760
|
*/
|
4685
4761
|
LastModifiedTime: Timestamp;
|
4686
4762
|
/**
|
4687
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
4763
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
4688
4764
|
*/
|
4689
4765
|
Tags?: TagMap;
|
4690
4766
|
}
|
@@ -4776,7 +4852,7 @@ declare namespace Connect {
|
|
4776
4852
|
*/
|
4777
4853
|
LastModifiedBy: ARN;
|
4778
4854
|
/**
|
4779
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
4855
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
4780
4856
|
*/
|
4781
4857
|
Tags?: TagMap;
|
4782
4858
|
}
|
@@ -5175,7 +5251,7 @@ declare namespace Connect {
|
|
5175
5251
|
Name: EventBridgeActionName;
|
5176
5252
|
}
|
5177
5253
|
export type EventBridgeActionName = string;
|
5178
|
-
export type EventSourceName = "OnPostCallAnalysisAvailable"|"OnRealTimeCallAnalysisAvailable"|"OnRealTimeChatAnalysisAvailable"|"OnPostChatAnalysisAvailable"|"OnZendeskTicketCreate"|"OnZendeskTicketStatusUpdate"|"OnSalesforceCaseCreate"|"OnContactEvaluationSubmit"|"OnMetricDataUpdate"|string;
|
5254
|
+
export type EventSourceName = "OnPostCallAnalysisAvailable"|"OnRealTimeCallAnalysisAvailable"|"OnRealTimeChatAnalysisAvailable"|"OnPostChatAnalysisAvailable"|"OnZendeskTicketCreate"|"OnZendeskTicketStatusUpdate"|"OnSalesforceCaseCreate"|"OnContactEvaluationSubmit"|"OnMetricDataUpdate"|"OnCaseCreate"|"OnCaseUpdate"|string;
|
5179
5255
|
export interface FailedRequest {
|
5180
5256
|
/**
|
5181
5257
|
* Request identifier provided in the API call in the ContactDataRequest to create a contact.
|
@@ -5192,6 +5268,37 @@ declare namespace Connect {
|
|
5192
5268
|
}
|
5193
5269
|
export type FailedRequestList = FailedRequest[];
|
5194
5270
|
export type FailureReasonCode = "INVALID_ATTRIBUTE_KEY"|"INVALID_CUSTOMER_ENDPOINT"|"INVALID_SYSTEM_ENDPOINT"|"INVALID_QUEUE"|"MISSING_CAMPAIGN"|"MISSING_CUSTOMER_ENDPOINT"|"MISSING_QUEUE_ID_AND_SYSTEM_ENDPOINT"|"REQUEST_THROTTLED"|"IDEMPOTENCY_EXCEPTION"|"INTERNAL_ERROR"|string;
|
5271
|
+
export type FieldStringValue = string;
|
5272
|
+
export interface FieldValue {
|
5273
|
+
/**
|
5274
|
+
* Unique identifier of a field.
|
5275
|
+
*/
|
5276
|
+
Id: FieldValueId;
|
5277
|
+
/**
|
5278
|
+
* Union of potential field value types.
|
5279
|
+
*/
|
5280
|
+
Value: FieldValueUnion;
|
5281
|
+
}
|
5282
|
+
export type FieldValueId = string;
|
5283
|
+
export interface FieldValueUnion {
|
5284
|
+
/**
|
5285
|
+
* A Boolean number value type.
|
5286
|
+
*/
|
5287
|
+
BooleanValue?: Boolean;
|
5288
|
+
/**
|
5289
|
+
* a Double number value type.
|
5290
|
+
*/
|
5291
|
+
DoubleValue?: Double;
|
5292
|
+
/**
|
5293
|
+
* An empty value.
|
5294
|
+
*/
|
5295
|
+
EmptyValue?: EmptyFieldValue;
|
5296
|
+
/**
|
5297
|
+
* String value type.
|
5298
|
+
*/
|
5299
|
+
StringValue?: FieldStringValue;
|
5300
|
+
}
|
5301
|
+
export type FieldValues = FieldValue[];
|
5195
5302
|
export interface FilterV2 {
|
5196
5303
|
/**
|
5197
5304
|
* The key to use for filtering data. For example, QUEUE, ROUTING_PROFILE, AGENT, CHANNEL, AGENT_HIERARCHY_LEVEL_ONE, AGENT_HIERARCHY_LEVEL_TWO, AGENT_HIERARCHY_LEVEL_THREE, AGENT_HIERARCHY_LEVEL_FOUR, AGENT_HIERARCHY_LEVEL_FIVE. There must be at least 1 key and a maximum 5 keys.
|
@@ -5454,7 +5561,7 @@ declare namespace Connect {
|
|
5454
5561
|
*/
|
5455
5562
|
Groupings?: GroupingsV2;
|
5456
5563
|
/**
|
5457
|
-
* The metrics to retrieve. Specify the name, groupings, and filters for each metric. The following historical metrics are available. For a description of each metric, see Historical metrics definitions in the Amazon Connect Administrator's Guide. ABANDONMENT_RATE Unit: Percent Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype AGENT_ADHERENT_TIME This metric is available only in Amazon Web Services Regions where Forecasting, capacity planning, and scheduling is available. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AGENT_ANSWER_RATE Unit: Percent Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AGENT_NON_ADHERENT_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AGENT_NON_RESPONSE Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AGENT_NON_RESPONSE_WITHOUT_CUSTOMER_ABANDONS Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy Data for this metric is available starting from October 1, 2023 0:00:00 GMT. AGENT_OCCUPANCY Unit: Percentage Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy AGENT_SCHEDULE_ADHERENCE This metric is available only in Amazon Web Services Regions where Forecasting, capacity planning, and scheduling is available. Unit: Percent Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AGENT_SCHEDULED_TIME This metric is available only in Amazon Web Services Regions where Forecasting, capacity planning, and scheduling is available. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AVG_ABANDON_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype AVG_AFTER_CONTACT_WORK_TIME Unit: Seconds Valid metric filter key: INITIATION_METHOD Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype Feature is a valid filter but not a valid grouping. AVG_AGENT_CONNECTING_TIME Unit: Seconds Valid metric filter key: INITIATION_METHOD. For now, this metric only supports the following as INITIATION_METHOD: INBOUND | OUTBOUND | CALLBACK | API Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy The Negate key in Metric Level Filters is not applicable for this metric. AVG_CONTACT_DURATION Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype Feature is a valid filter but not a valid grouping. AVG_CONVERSATION_DURATION Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype AVG_GREETING_TIME_AGENT This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype AVG_HANDLE_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype Feature is a valid filter but not a valid grouping. AVG_HOLD_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype Feature is a valid filter but not a valid grouping. AVG_HOLD_TIME_ALL_CONTACTS Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype AVG_HOLDS Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype Feature is a valid filter but not a valid grouping. AVG_INTERACTION_AND_HOLD_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype AVG_INTERACTION_TIME Unit: Seconds Valid metric filter key: INITIATION_METHOD Valid groupings and filters: Queue, Channel, Routing Profile, Feature, contact/segmentAttributes/connect:Subtype Feature is a valid filter but not a valid grouping. AVG_INTERRUPTIONS_AGENT This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype AVG_INTERRUPTION_TIME_AGENT This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype AVG_NON_TALK_TIME This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype AVG_QUEUE_ANSWER_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Feature, contact/segmentAttributes/connect:Subtype Feature is a valid filter but not a valid grouping. AVG_RESOLUTION_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype AVG_TALK_TIME This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype AVG_TALK_TIME_AGENT This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype AVG_TALK_TIME_CUSTOMER This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype CONTACTS_ABANDONED Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype CONTACTS_CREATED Unit: Count Valid metric filter key: INITIATION_METHOD Valid groupings and filters: Queue, Channel, Routing Profile, Feature, contact/segmentAttributes/connect:Subtype Feature is a valid filter but not a valid grouping. CONTACTS_HANDLED Unit: Count Valid metric filter key: INITIATION_METHOD, DISCONNECT_REASON Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype Feature is a valid filter but not a valid grouping. CONTACTS_HOLD_ABANDONS Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype CONTACTS_ON_HOLD_AGENT_DISCONNECT Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_ON_HOLD_CUSTOMER_DISCONNECT Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_PUT_ON_HOLD Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_TRANSFERRED_OUT_EXTERNAL Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_TRANSFERRED_OUT_INTERNAL Unit: Percent Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_QUEUED Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype CONTACTS_RESOLVED_IN_X Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype Threshold: For ThresholdValue enter any whole number from 1 to 604800 (inclusive), in seconds. For Comparison, you must enter LT (for "Less than"). CONTACTS_TRANSFERRED_OUT Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype Feature is a valid filter but not a valid grouping. CONTACTS_TRANSFERRED_OUT_BY_AGENT Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype CONTACTS_TRANSFERRED_OUT_FROM_QUEUE Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype MAX_QUEUED_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype PERCENT_NON_TALK_TIME This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Percentage Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype PERCENT_TALK_TIME This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Percentage Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype PERCENT_TALK_TIME_AGENT This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Percentage Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype PERCENT_TALK_TIME_CUSTOMER This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Percentage Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype SERVICE_LEVEL You can include up to 20 SERVICE_LEVEL metrics in a request. Unit: Percent Valid groupings and filters: Queue, Channel, Routing Profile Threshold: For ThresholdValue, enter any whole number from 1 to 604800 (inclusive), in seconds. For Comparison, you must enter LT (for "Less than"). SUM_AFTER_CONTACT_WORK_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy SUM_CONNECTING_TIME_AGENT Unit: Seconds Valid metric filter key: INITIATION_METHOD. This metric only supports the following filter keys as INITIATION_METHOD: INBOUND | OUTBOUND | CALLBACK | API Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy The Negate key in Metric Level Filters is not applicable for this metric. SUM_CONTACT_FLOW_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy SUM_CONTACT_TIME_AGENT Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy SUM_CONTACTS_ANSWERED_IN_X Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype Threshold: For ThresholdValue, enter any whole number from 1 to 604800 (inclusive), in seconds. For Comparison, you must enter LT (for "Less than"). SUM_CONTACTS_ABANDONED_IN_X Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype Threshold: For ThresholdValue, enter any whole number from 1 to 604800 (inclusive), in seconds. For Comparison, you must enter LT (for "Less than"). SUM_CONTACTS_DISCONNECTED Valid metric filter key: DISCONNECT_REASON Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype SUM_ERROR_STATUS_TIME_AGENT Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy SUM_HANDLE_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy SUM_HOLD_TIME Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy SUM_IDLE_TIME_AGENT Unit: Seconds Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy SUM_INTERACTION_AND_HOLD_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy SUM_INTERACTION_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy SUM_NON_PRODUCTIVE_TIME_AGENT Unit: Seconds Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy SUM_ONLINE_TIME_AGENT Unit: Seconds Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy SUM_RETRY_CALLBACK_ATTEMPTS Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype
|
5564
|
+
* The metrics to retrieve. Specify the name, groupings, and filters for each metric. The following historical metrics are available. For a description of each metric, see Historical metrics definitions in the Amazon Connect Administrator's Guide. ABANDONMENT_RATE Unit: Percent Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype AGENT_ADHERENT_TIME This metric is available only in Amazon Web Services Regions where Forecasting, capacity planning, and scheduling is available. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AGENT_ANSWER_RATE Unit: Percent Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AGENT_NON_ADHERENT_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AGENT_NON_RESPONSE Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AGENT_NON_RESPONSE_WITHOUT_CUSTOMER_ABANDONS Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy Data for this metric is available starting from October 1, 2023 0:00:00 GMT. AGENT_OCCUPANCY Unit: Percentage Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy AGENT_SCHEDULE_ADHERENCE This metric is available only in Amazon Web Services Regions where Forecasting, capacity planning, and scheduling is available. Unit: Percent Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AGENT_SCHEDULED_TIME This metric is available only in Amazon Web Services Regions where Forecasting, capacity planning, and scheduling is available. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AVG_ABANDON_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype AVG_ACTIVE_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AVG_AFTER_CONTACT_WORK_TIME Unit: Seconds Valid metric filter key: INITIATION_METHOD Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype Feature is a valid filter but not a valid grouping. AVG_AGENT_CONNECTING_TIME Unit: Seconds Valid metric filter key: INITIATION_METHOD. For now, this metric only supports the following as INITIATION_METHOD: INBOUND | OUTBOUND | CALLBACK | API Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy The Negate key in Metric Level Filters is not applicable for this metric. AVG_AGENT_PAUSE_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AVG_CONTACT_DURATION Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype Feature is a valid filter but not a valid grouping. AVG_CONVERSATION_DURATION Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype AVG_GREETING_TIME_AGENT This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype AVG_HANDLE_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype Feature is a valid filter but not a valid grouping. AVG_HOLD_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype Feature is a valid filter but not a valid grouping. AVG_HOLD_TIME_ALL_CONTACTS Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype AVG_HOLDS Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype Feature is a valid filter but not a valid grouping. AVG_INTERACTION_AND_HOLD_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype AVG_INTERACTION_TIME Unit: Seconds Valid metric filter key: INITIATION_METHOD Valid groupings and filters: Queue, Channel, Routing Profile, Feature, contact/segmentAttributes/connect:Subtype Feature is a valid filter but not a valid grouping. AVG_INTERRUPTIONS_AGENT This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype AVG_INTERRUPTION_TIME_AGENT This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype AVG_NON_TALK_TIME This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype AVG_QUEUE_ANSWER_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Feature, contact/segmentAttributes/connect:Subtype Feature is a valid filter but not a valid grouping. AVG_RESOLUTION_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype AVG_TALK_TIME This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype AVG_TALK_TIME_AGENT This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype AVG_TALK_TIME_CUSTOMER This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype CONTACTS_ABANDONED Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype CONTACTS_CREATED Unit: Count Valid metric filter key: INITIATION_METHOD Valid groupings and filters: Queue, Channel, Routing Profile, Feature, contact/segmentAttributes/connect:Subtype Feature is a valid filter but not a valid grouping. CONTACTS_HANDLED Unit: Count Valid metric filter key: INITIATION_METHOD, DISCONNECT_REASON Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype Feature is a valid filter but not a valid grouping. CONTACTS_HOLD_ABANDONS Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype CONTACTS_ON_HOLD_AGENT_DISCONNECT Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_ON_HOLD_CUSTOMER_DISCONNECT Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_PUT_ON_HOLD Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_TRANSFERRED_OUT_EXTERNAL Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_TRANSFERRED_OUT_INTERNAL Unit: Percent Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_QUEUED Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype CONTACTS_RESOLVED_IN_X Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype Threshold: For ThresholdValue enter any whole number from 1 to 604800 (inclusive), in seconds. For Comparison, you must enter LT (for "Less than"). CONTACTS_TRANSFERRED_OUT Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype Feature is a valid filter but not a valid grouping. CONTACTS_TRANSFERRED_OUT_BY_AGENT Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype CONTACTS_TRANSFERRED_OUT_FROM_QUEUE Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype MAX_QUEUED_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype PERCENT_NON_TALK_TIME This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Percentage Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype PERCENT_TALK_TIME This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Percentage Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype PERCENT_TALK_TIME_AGENT This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Percentage Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype PERCENT_TALK_TIME_CUSTOMER This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Percentage Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype SERVICE_LEVEL You can include up to 20 SERVICE_LEVEL metrics in a request. Unit: Percent Valid groupings and filters: Queue, Channel, Routing Profile Threshold: For ThresholdValue, enter any whole number from 1 to 604800 (inclusive), in seconds. For Comparison, you must enter LT (for "Less than"). SUM_AFTER_CONTACT_WORK_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy SUM_CONNECTING_TIME_AGENT Unit: Seconds Valid metric filter key: INITIATION_METHOD. This metric only supports the following filter keys as INITIATION_METHOD: INBOUND | OUTBOUND | CALLBACK | API Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy The Negate key in Metric Level Filters is not applicable for this metric. SUM_CONTACT_FLOW_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy SUM_CONTACT_TIME_AGENT Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy SUM_CONTACTS_ANSWERED_IN_X Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype Threshold: For ThresholdValue, enter any whole number from 1 to 604800 (inclusive), in seconds. For Comparison, you must enter LT (for "Less than"). SUM_CONTACTS_ABANDONED_IN_X Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype Threshold: For ThresholdValue, enter any whole number from 1 to 604800 (inclusive), in seconds. For Comparison, you must enter LT (for "Less than"). SUM_CONTACTS_DISCONNECTED Valid metric filter key: DISCONNECT_REASON Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype SUM_ERROR_STATUS_TIME_AGENT Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy SUM_HANDLE_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy SUM_HOLD_TIME Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy SUM_IDLE_TIME_AGENT Unit: Seconds Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy SUM_INTERACTION_AND_HOLD_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy SUM_INTERACTION_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy SUM_NON_PRODUCTIVE_TIME_AGENT Unit: Seconds Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy SUM_ONLINE_TIME_AGENT Unit: Seconds Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy SUM_RETRY_CALLBACK_ATTEMPTS Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype
|
5458
5565
|
*/
|
5459
5566
|
Metrics: MetricsV2;
|
5460
5567
|
/**
|
@@ -5564,7 +5671,7 @@ declare namespace Connect {
|
|
5564
5671
|
*/
|
5565
5672
|
CreatedTime?: timestamp;
|
5566
5673
|
/**
|
5567
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
5674
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
5568
5675
|
*/
|
5569
5676
|
Tags?: TagMap;
|
5570
5677
|
}
|
@@ -5622,7 +5729,7 @@ declare namespace Connect {
|
|
5622
5729
|
*/
|
5623
5730
|
HierarchyPath?: HierarchyPath;
|
5624
5731
|
/**
|
5625
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
5732
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
5626
5733
|
*/
|
5627
5734
|
Tags?: TagMap;
|
5628
5735
|
/**
|
@@ -5868,7 +5975,7 @@ declare namespace Connect {
|
|
5868
5975
|
*/
|
5869
5976
|
Config?: HoursOfOperationConfigList;
|
5870
5977
|
/**
|
5871
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
5978
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
5872
5979
|
*/
|
5873
5980
|
Tags?: TagMap;
|
5874
5981
|
/**
|
@@ -5966,7 +6073,7 @@ declare namespace Connect {
|
|
5966
6073
|
*/
|
5967
6074
|
PhoneNumberDescription?: PhoneNumberDescription;
|
5968
6075
|
/**
|
5969
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
6076
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
5970
6077
|
*/
|
5971
6078
|
Tags?: TagMap;
|
5972
6079
|
/**
|
@@ -7640,7 +7747,7 @@ declare namespace Connect {
|
|
7640
7747
|
export type NotificationDeliveryType = "EMAIL"|string;
|
7641
7748
|
export interface NotificationRecipientType {
|
7642
7749
|
/**
|
7643
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
7750
|
+
* 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.
|
7644
7751
|
*/
|
7645
7752
|
UserTags?: UserTagMap;
|
7646
7753
|
/**
|
@@ -7748,6 +7855,22 @@ declare namespace Connect {
|
|
7748
7855
|
Expiry?: ISO8601Datetime;
|
7749
7856
|
}
|
7750
7857
|
export type Password = string;
|
7858
|
+
export interface PauseContactRequest {
|
7859
|
+
/**
|
7860
|
+
* The identifier of the contact.
|
7861
|
+
*/
|
7862
|
+
ContactId: ContactId;
|
7863
|
+
/**
|
7864
|
+
* The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.
|
7865
|
+
*/
|
7866
|
+
InstanceId: InstanceId;
|
7867
|
+
/**
|
7868
|
+
* The identifier of the flow.
|
7869
|
+
*/
|
7870
|
+
ContactFlowId?: ContactFlowId;
|
7871
|
+
}
|
7872
|
+
export interface PauseContactResponse {
|
7873
|
+
}
|
7751
7874
|
export type Percentage = number;
|
7752
7875
|
export type Permission = string;
|
7753
7876
|
export type PermissionsList = SecurityProfilePermission[];
|
@@ -7831,7 +7954,7 @@ declare namespace Connect {
|
|
7831
7954
|
*/
|
7832
7955
|
Description?: PromptDescription;
|
7833
7956
|
/**
|
7834
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
7957
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
7835
7958
|
*/
|
7836
7959
|
Tags?: TagMap;
|
7837
7960
|
/**
|
@@ -7939,7 +8062,7 @@ declare namespace Connect {
|
|
7939
8062
|
*/
|
7940
8063
|
Status?: QueueStatus;
|
7941
8064
|
/**
|
7942
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
8065
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
7943
8066
|
*/
|
7944
8067
|
Tags?: TagMap;
|
7945
8068
|
/**
|
@@ -8061,7 +8184,7 @@ declare namespace Connect {
|
|
8061
8184
|
*/
|
8062
8185
|
QuickConnectConfig?: QuickConnectConfig;
|
8063
8186
|
/**
|
8064
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
8187
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
8065
8188
|
*/
|
8066
8189
|
Tags?: TagMap;
|
8067
8190
|
/**
|
@@ -8478,6 +8601,22 @@ declare namespace Connect {
|
|
8478
8601
|
}
|
8479
8602
|
export interface ResumeContactRecordingResponse {
|
8480
8603
|
}
|
8604
|
+
export interface ResumeContactRequest {
|
8605
|
+
/**
|
8606
|
+
* The identifier of the contact.
|
8607
|
+
*/
|
8608
|
+
ContactId: ContactId;
|
8609
|
+
/**
|
8610
|
+
* The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.
|
8611
|
+
*/
|
8612
|
+
InstanceId: InstanceId;
|
8613
|
+
/**
|
8614
|
+
* The identifier of the flow.
|
8615
|
+
*/
|
8616
|
+
ContactFlowId?: ContactFlowId;
|
8617
|
+
}
|
8618
|
+
export interface ResumeContactResponse {
|
8619
|
+
}
|
8481
8620
|
export interface RoutingProfile {
|
8482
8621
|
/**
|
8483
8622
|
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
|
@@ -8508,7 +8647,7 @@ declare namespace Connect {
|
|
8508
8647
|
*/
|
8509
8648
|
DefaultOutboundQueueId?: QueueId;
|
8510
8649
|
/**
|
8511
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
8650
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
8512
8651
|
*/
|
8513
8652
|
Tags?: TagMap;
|
8514
8653
|
/**
|
@@ -8687,7 +8826,7 @@ declare namespace Connect {
|
|
8687
8826
|
*/
|
8688
8827
|
LastUpdatedBy: ARN;
|
8689
8828
|
/**
|
8690
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
8829
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
8691
8830
|
*/
|
8692
8831
|
Tags?: TagMap;
|
8693
8832
|
}
|
@@ -8712,6 +8851,18 @@ declare namespace Connect {
|
|
8712
8851
|
* Information about the send notification action. Supported only for TriggerEventSource values: OnPostCallAnalysisAvailable | OnRealTimeCallAnalysisAvailable | OnRealTimeChatAnalysisAvailable | OnPostChatAnalysisAvailable | OnContactEvaluationSubmit | OnMetricDataUpdate
|
8713
8852
|
*/
|
8714
8853
|
SendNotificationAction?: SendNotificationActionDefinition;
|
8854
|
+
/**
|
8855
|
+
* Information about the create case action. Supported only for TriggerEventSource values: OnPostCallAnalysisAvailable | OnPostChatAnalysisAvailable.
|
8856
|
+
*/
|
8857
|
+
CreateCaseAction?: CreateCaseActionDefinition;
|
8858
|
+
/**
|
8859
|
+
* Information about the update case action. Supported only for TriggerEventSource values: OnCaseCreate | OnCaseUpdate.
|
8860
|
+
*/
|
8861
|
+
UpdateCaseAction?: UpdateCaseActionDefinition;
|
8862
|
+
/**
|
8863
|
+
* Information about the end associated tasks action. Supported only for TriggerEventSource values: OnCaseUpdate.
|
8864
|
+
*/
|
8865
|
+
EndAssociatedTasksAction?: EndAssociatedTasksActionDefinition;
|
8715
8866
|
}
|
8716
8867
|
export type RuleActions = RuleAction[];
|
8717
8868
|
export type RuleFunction = string;
|
@@ -9173,7 +9324,7 @@ declare namespace Connect {
|
|
9173
9324
|
*/
|
9174
9325
|
Description?: SecurityProfileDescription;
|
9175
9326
|
/**
|
9176
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
9327
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
9177
9328
|
*/
|
9178
9329
|
Tags?: TagMap;
|
9179
9330
|
/**
|
@@ -9234,7 +9385,7 @@ declare namespace Connect {
|
|
9234
9385
|
*/
|
9235
9386
|
Description?: SecurityProfileDescription;
|
9236
9387
|
/**
|
9237
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
9388
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
9238
9389
|
*/
|
9239
9390
|
Tags?: TagMap;
|
9240
9391
|
}
|
@@ -9367,7 +9518,7 @@ declare namespace Connect {
|
|
9367
9518
|
export type SortOrder = "ASCENDING"|"DESCENDING"|string;
|
9368
9519
|
export type SourceApplicationName = string;
|
9369
9520
|
export type SourceId = string;
|
9370
|
-
export type SourceType = "SALESFORCE"|"ZENDESK"|string;
|
9521
|
+
export type SourceType = "SALESFORCE"|"ZENDESK"|"CASES"|string;
|
9371
9522
|
export interface StartChatContactRequest {
|
9372
9523
|
/**
|
9373
9524
|
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
|
@@ -9505,6 +9656,22 @@ declare namespace Connect {
|
|
9505
9656
|
StreamingId: StreamingId;
|
9506
9657
|
}
|
9507
9658
|
export interface StartOutboundVoiceContactRequest {
|
9659
|
+
/**
|
9660
|
+
* The name of a voice contact that is shown to an agent in the Contact Control Panel (CCP).
|
9661
|
+
*/
|
9662
|
+
Name?: Name;
|
9663
|
+
/**
|
9664
|
+
* A description of the voice contact that is shown to an agent in the Contact Control Panel (CCP).
|
9665
|
+
*/
|
9666
|
+
Description?: Description;
|
9667
|
+
/**
|
9668
|
+
* A formatted URL that is shown to an agent in the Contact Control Panel (CCP). Contacts can have the following reference types at the time of creation: URL | NUMBER | STRING | DATE | EMAIL. ATTACHMENT is not a supported reference type during voice contact creation.
|
9669
|
+
*/
|
9670
|
+
References?: ContactReferences;
|
9671
|
+
/**
|
9672
|
+
* The contactId that is related to this contact. Linking voice, task, or chat by using RelatedContactID copies over contact attributes from the related contact to the new contact. All updates to user-defined attributes in the new contact are limited to the individual contact ID. There are no limits to the number of contacts that can be linked by using RelatedContactId.
|
9673
|
+
*/
|
9674
|
+
RelatedContactId?: ContactId;
|
9508
9675
|
/**
|
9509
9676
|
* The phone number of the customer, in E.164 format.
|
9510
9677
|
*/
|
@@ -9808,6 +9975,22 @@ declare namespace Connect {
|
|
9808
9975
|
*/
|
9809
9976
|
TagValue?: String;
|
9810
9977
|
}
|
9978
|
+
export interface TagContactRequest {
|
9979
|
+
/**
|
9980
|
+
* The identifier of the contact in this instance of Amazon Connect.
|
9981
|
+
*/
|
9982
|
+
ContactId: ContactId;
|
9983
|
+
/**
|
9984
|
+
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
|
9985
|
+
*/
|
9986
|
+
InstanceId: InstanceId;
|
9987
|
+
/**
|
9988
|
+
* The tags to be assigned to the contact resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }. Authorization is not supported by this tag.
|
9989
|
+
*/
|
9990
|
+
Tags: ContactTagMap;
|
9991
|
+
}
|
9992
|
+
export interface TagContactResponse {
|
9993
|
+
}
|
9811
9994
|
export type TagKey = string;
|
9812
9995
|
export type TagKeyList = TagKey[];
|
9813
9996
|
export type TagKeyString = string;
|
@@ -9819,7 +10002,7 @@ declare namespace Connect {
|
|
9819
10002
|
*/
|
9820
10003
|
resourceArn: ARN;
|
9821
10004
|
/**
|
9822
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
10005
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
9823
10006
|
*/
|
9824
10007
|
tags: TagMap;
|
9825
10008
|
}
|
@@ -9979,6 +10162,7 @@ declare namespace Connect {
|
|
9979
10162
|
*/
|
9980
10163
|
Distributions: DistributionList;
|
9981
10164
|
}
|
10165
|
+
export type TemplateId = string;
|
9982
10166
|
export interface Threshold {
|
9983
10167
|
/**
|
9984
10168
|
* The type of comparison. Only "less than" (LT) comparisons are supported.
|
@@ -10004,6 +10188,8 @@ declare namespace Connect {
|
|
10004
10188
|
export type TimeZone = string;
|
10005
10189
|
export type TimerEligibleParticipantRoles = "CUSTOMER"|"AGENT"|string;
|
10006
10190
|
export type Timestamp = Date;
|
10191
|
+
export type TotalPauseCount = number;
|
10192
|
+
export type TotalPauseDurationInSeconds = number;
|
10007
10193
|
export interface TrafficDistributionGroup {
|
10008
10194
|
/**
|
10009
10195
|
* The identifier of the traffic distribution group. This can be the ID or the ARN if the API is being called in the Region where the traffic distribution group was created. The ARN must be provided if the call is from the replicated Region.
|
@@ -10030,7 +10216,7 @@ declare namespace Connect {
|
|
10030
10216
|
*/
|
10031
10217
|
Status?: TrafficDistributionGroupStatus;
|
10032
10218
|
/**
|
10033
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
10219
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
10034
10220
|
*/
|
10035
10221
|
Tags?: TagMap;
|
10036
10222
|
/**
|
@@ -10115,6 +10301,22 @@ declare namespace Connect {
|
|
10115
10301
|
}
|
10116
10302
|
export type URI = string;
|
10117
10303
|
export type Unit = "SECONDS"|"COUNT"|"PERCENT"|string;
|
10304
|
+
export interface UntagContactRequest {
|
10305
|
+
/**
|
10306
|
+
* The identifier of the contact in this instance of Amazon Connect.
|
10307
|
+
*/
|
10308
|
+
ContactId: ContactId;
|
10309
|
+
/**
|
10310
|
+
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
|
10311
|
+
*/
|
10312
|
+
InstanceId: InstanceId;
|
10313
|
+
/**
|
10314
|
+
* A list of tag keys. Existing tags on the contact whose keys are members of this list will be removed.
|
10315
|
+
*/
|
10316
|
+
TagKeys: ContactTagKeys;
|
10317
|
+
}
|
10318
|
+
export interface UntagContactResponse {
|
10319
|
+
}
|
10118
10320
|
export interface UntagResourceRequest {
|
10119
10321
|
/**
|
10120
10322
|
* The Amazon Resource Name (ARN) of the resource.
|
@@ -10156,6 +10358,12 @@ declare namespace Connect {
|
|
10156
10358
|
*/
|
10157
10359
|
ResetOrderNumber?: Boolean;
|
10158
10360
|
}
|
10361
|
+
export interface UpdateCaseActionDefinition {
|
10362
|
+
/**
|
10363
|
+
* An array of objects with Field ID and Value data.
|
10364
|
+
*/
|
10365
|
+
Fields: FieldValues;
|
10366
|
+
}
|
10159
10367
|
export interface UpdateContactAttributesRequest {
|
10160
10368
|
/**
|
10161
10369
|
* The identifier of the contact. This is the identifier of the contact associated with the first interaction with the contact center.
|
@@ -11292,7 +11500,7 @@ declare namespace Connect {
|
|
11292
11500
|
*/
|
11293
11501
|
SecurityProfileIds?: SecurityProfileIds;
|
11294
11502
|
/**
|
11295
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
11503
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
11296
11504
|
*/
|
11297
11505
|
Tags?: TagMap;
|
11298
11506
|
/**
|
@@ -11512,7 +11720,7 @@ declare namespace Connect {
|
|
11512
11720
|
*/
|
11513
11721
|
Content?: VocabularyContent;
|
11514
11722
|
/**
|
11515
|
-
* The tags used to organize, track, or control access for this resource. For example, { "
|
11723
|
+
* The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
|
11516
11724
|
*/
|
11517
11725
|
Tags?: TagMap;
|
11518
11726
|
}
|