1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
open Awso_connect
open Awso_sync
module Io = Http.Io
let eval ?endpoint_url ?cfg endpoint input =
Io.bind (Io.resolve_cfg cfg)
(fun cfg ->
let meth = Endpoints.method_of_endpoint endpoint in
let uri = Endpoints.uri_of_endpoint endpoint input in
Io.map
(Io.call ?endpoint_url ~cfg ~service:Values.service meth
(Endpoints.to_request endpoint input) uri)
(fun resp_result -> Endpoints.of_response endpoint resp_result))
let activate_evaluation_form ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ActivateEvaluationForm input
let associate_analytics_data_set ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AssociateAnalyticsDataSet input
let associate_approved_origin ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AssociateApprovedOrigin input
let associate_bot ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AssociateBot input
let associate_contact_with_user ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AssociateContactWithUser input
let associate_default_vocabulary ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AssociateDefaultVocabulary input
let associate_email_address_alias ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AssociateEmailAddressAlias input
let associate_flow ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AssociateFlow input
let associate_hours_of_operations ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AssociateHoursOfOperations input
let associate_instance_storage_config ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AssociateInstanceStorageConfig input
let associate_lambda_function ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AssociateLambdaFunction input
let associate_lex_bot ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AssociateLexBot input
let associate_phone_number_contact_flow ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AssociatePhoneNumberContactFlow input
let associate_queue_email_addresses ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AssociateQueueEmailAddresses input
let associate_queue_quick_connects ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AssociateQueueQuickConnects input
let associate_routing_profile_queues ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AssociateRoutingProfileQueues input
let associate_security_key ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AssociateSecurityKey input
let associate_security_profiles ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AssociateSecurityProfiles input
let associate_traffic_distribution_group_user ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AssociateTrafficDistributionGroupUser
input
let associate_user_proficiencies ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AssociateUserProficiencies input
let associate_workspace ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AssociateWorkspace input
let batch_associate_analytics_data_set ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchAssociateAnalyticsDataSet input
let batch_create_data_table_value ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchCreateDataTableValue input
let batch_delete_data_table_value ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchDeleteDataTableValue input
let batch_describe_data_table_value ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchDescribeDataTableValue input
let batch_disassociate_analytics_data_set ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchDisassociateAnalyticsDataSet input
let batch_get_attached_file_metadata ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchGetAttachedFileMetadata input
let batch_get_flow_association ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchGetFlowAssociation input
let batch_put_contact ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchPutContact input
let batch_update_data_table_value ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchUpdateDataTableValue input
let claim_phone_number ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ClaimPhoneNumber input
let complete_attached_file_upload ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CompleteAttachedFileUpload input
let create_agent_status ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateAgentStatus input
let create_contact ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateContact input
let create_contact_flow ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateContactFlow input
let create_contact_flow_module ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateContactFlowModule input
let create_contact_flow_module_alias ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateContactFlowModuleAlias input
let create_contact_flow_module_version ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateContactFlowModuleVersion input
let create_contact_flow_version ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateContactFlowVersion input
let create_data_table ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateDataTable input
let create_data_table_attribute ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateDataTableAttribute input
let create_email_address ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateEmailAddress input
let create_evaluation_form ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateEvaluationForm input
let create_hours_of_operation ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateHoursOfOperation input
let create_hours_of_operation_override ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateHoursOfOperationOverride input
let create_instance ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateInstance input
let create_integration_association ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateIntegrationAssociation input
let create_notification ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateNotification input
let create_participant ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateParticipant input
let create_persistent_contact_association ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreatePersistentContactAssociation input
let create_predefined_attribute ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreatePredefinedAttribute input
let create_prompt ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreatePrompt input
let create_push_notification_registration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreatePushNotificationRegistration input
let create_queue ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateQueue input
let create_quick_connect ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateQuickConnect input
let create_routing_profile ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateRoutingProfile input
let create_rule ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateRule input
let create_security_profile ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateSecurityProfile input
let create_task_template ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateTaskTemplate input
let create_test_case ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateTestCase input
let create_traffic_distribution_group ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateTrafficDistributionGroup input
let create_use_case ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateUseCase input
let create_user ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateUser input
let create_user_hierarchy_group ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateUserHierarchyGroup input
let create_view ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateView input
let create_view_version ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateViewVersion input
let create_vocabulary ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateVocabulary input
let create_workspace ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateWorkspace input
let create_workspace_page ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateWorkspacePage input
let deactivate_evaluation_form ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeactivateEvaluationForm input
let delete_attached_file ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteAttachedFile input
let delete_contact_evaluation ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteContactEvaluation input
let delete_contact_flow ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteContactFlow input
let delete_contact_flow_module ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteContactFlowModule input
let delete_contact_flow_module_alias ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteContactFlowModuleAlias input
let delete_contact_flow_module_version ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteContactFlowModuleVersion input
let delete_contact_flow_version ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteContactFlowVersion input
let delete_data_table ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteDataTable input
let delete_data_table_attribute ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteDataTableAttribute input
let delete_email_address ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteEmailAddress input
let delete_evaluation_form ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteEvaluationForm input
let delete_hours_of_operation ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteHoursOfOperation input
let delete_hours_of_operation_override ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteHoursOfOperationOverride input
let delete_instance ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteInstance input
let delete_integration_association ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteIntegrationAssociation input
let delete_notification ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteNotification input
let delete_predefined_attribute ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeletePredefinedAttribute input
let delete_prompt ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeletePrompt input
let delete_push_notification_registration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeletePushNotificationRegistration input
let delete_queue ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteQueue input
let delete_quick_connect ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteQuickConnect input
let delete_routing_profile ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteRoutingProfile input
let delete_rule ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteRule input
let delete_security_profile ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteSecurityProfile input
let delete_task_template ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteTaskTemplate input
let delete_test_case ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteTestCase input
let delete_traffic_distribution_group ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteTrafficDistributionGroup input
let delete_use_case ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteUseCase input
let delete_user ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteUser input
let delete_user_hierarchy_group ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteUserHierarchyGroup input
let delete_view ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteView input
let delete_view_version ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteViewVersion input
let delete_vocabulary ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteVocabulary input
let delete_workspace ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteWorkspace input
let delete_workspace_media ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteWorkspaceMedia input
let delete_workspace_page ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteWorkspacePage input
let describe_agent_status ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeAgentStatus input
let describe_attached_files_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeAttachedFilesConfiguration input
let describe_authentication_profile ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeAuthenticationProfile input
let describe_contact ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeContact input
let describe_contact_evaluation ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeContactEvaluation input
let describe_contact_flow ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeContactFlow input
let describe_contact_flow_module ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeContactFlowModule input
let describe_contact_flow_module_alias ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeContactFlowModuleAlias input
let describe_data_table ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeDataTable input
let describe_data_table_attribute ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeDataTableAttribute input
let describe_email_address ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeEmailAddress input
let describe_evaluation_form ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeEvaluationForm input
let describe_hours_of_operation ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeHoursOfOperation input
let describe_hours_of_operation_override ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeHoursOfOperationOverride input
let describe_instance ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeInstance input
let describe_instance_attribute ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeInstanceAttribute input
let describe_instance_storage_config ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeInstanceStorageConfig input
let describe_notification ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeNotification input
let describe_phone_number ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribePhoneNumber input
let describe_predefined_attribute ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribePredefinedAttribute input
let describe_prompt ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribePrompt input
let describe_queue ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeQueue input
let describe_quick_connect ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeQuickConnect input
let describe_routing_profile ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeRoutingProfile input
let describe_rule ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeRule input
let describe_security_profile ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeSecurityProfile input
let describe_test_case ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeTestCase input
let describe_traffic_distribution_group ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeTrafficDistributionGroup input
let describe_user ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeUser input
let describe_user_hierarchy_group ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeUserHierarchyGroup input
let describe_user_hierarchy_structure ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeUserHierarchyStructure input
let describe_view ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeView input
let describe_vocabulary ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeVocabulary input
let describe_workspace ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeWorkspace input
let disassociate_analytics_data_set ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DisassociateAnalyticsDataSet input
let disassociate_approved_origin ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DisassociateApprovedOrigin input
let disassociate_bot ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DisassociateBot input
let disassociate_email_address_alias ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DisassociateEmailAddressAlias input
let disassociate_flow ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DisassociateFlow input
let disassociate_hours_of_operations ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DisassociateHoursOfOperations input
let disassociate_instance_storage_config ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DisassociateInstanceStorageConfig input
let disassociate_lambda_function ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DisassociateLambdaFunction input
let disassociate_lex_bot ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DisassociateLexBot input
let disassociate_phone_number_contact_flow ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DisassociatePhoneNumberContactFlow input
let disassociate_queue_email_addresses ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DisassociateQueueEmailAddresses input
let disassociate_queue_quick_connects ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DisassociateQueueQuickConnects input
let disassociate_routing_profile_queues ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DisassociateRoutingProfileQueues input
let disassociate_security_key ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DisassociateSecurityKey input
let disassociate_security_profiles ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DisassociateSecurityProfiles input
let disassociate_traffic_distribution_group_user ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DisassociateTrafficDistributionGroupUser
input
let disassociate_user_proficiencies ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DisassociateUserProficiencies input
let disassociate_workspace ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DisassociateWorkspace input
let dismiss_user_contact ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DismissUserContact input
let evaluate_data_table_values ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.EvaluateDataTableValues input
let get_attached_file ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetAttachedFile input
let get_contact_attributes ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetContactAttributes input
let get_contact_metrics ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetContactMetrics input
let get_current_metric_data ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetCurrentMetricData input
let get_current_user_data ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetCurrentUserData input
let get_effective_hours_of_operations ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetEffectiveHoursOfOperations input
let get_federation_token ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetFederationToken input
let get_flow_association ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetFlowAssociation input
let get_metric_data ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetMetricData input
let get_metric_data_v2 ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetMetricDataV2 input
let get_prompt_file ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetPromptFile input
let get_task_template ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetTaskTemplate input
let get_test_case_execution_summary ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetTestCaseExecutionSummary input
let get_traffic_distribution ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetTrafficDistribution input
let import_phone_number ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ImportPhoneNumber input
let import_workspace_media ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ImportWorkspaceMedia input
let list_agent_statuses ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListAgentStatuses input
let list_analytics_data_associations ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListAnalyticsDataAssociations input
let list_analytics_data_lake_data_sets ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListAnalyticsDataLakeDataSets input
let list_approved_origins ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListApprovedOrigins input
let list_associated_contacts ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListAssociatedContacts input
let list_attached_files_configurations ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListAttachedFilesConfigurations input
let list_authentication_profiles ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListAuthenticationProfiles input
let list_bots ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListBots input
let list_child_hours_of_operations ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListChildHoursOfOperations input
let list_contact_evaluations ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListContactEvaluations input
let list_contact_flow_module_aliases ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListContactFlowModuleAliases input
let list_contact_flow_module_versions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListContactFlowModuleVersions input
let list_contact_flow_modules ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListContactFlowModules input
let list_contact_flow_versions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListContactFlowVersions input
let list_contact_flows ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListContactFlows input
let list_contact_references ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListContactReferences input
let list_data_table_attributes ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListDataTableAttributes input
let list_data_table_primary_values ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListDataTablePrimaryValues input
let list_data_table_values ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListDataTableValues input
let list_data_tables ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListDataTables input
let list_default_vocabularies ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListDefaultVocabularies input
let list_entity_security_profiles ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListEntitySecurityProfiles input
let list_evaluation_form_versions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListEvaluationFormVersions input
let list_evaluation_forms ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListEvaluationForms input
let list_flow_associations ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListFlowAssociations input
let list_hours_of_operation_overrides ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListHoursOfOperationOverrides input
let list_hours_of_operations ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListHoursOfOperations input
let list_instance_attributes ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListInstanceAttributes input
let list_instance_storage_configs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListInstanceStorageConfigs input
let list_instances ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListInstances input
let list_integration_associations ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListIntegrationAssociations input
let list_lambda_functions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListLambdaFunctions input
let list_lex_bots ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListLexBots input
let list_notifications ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListNotifications input
let list_phone_numbers ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListPhoneNumbers input
let list_phone_numbers_v2 ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListPhoneNumbersV2 input
let list_predefined_attributes ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListPredefinedAttributes input
let list_prompts ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListPrompts input
let list_queue_email_addresses ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListQueueEmailAddresses input
let list_queue_quick_connects ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListQueueQuickConnects input
let list_queues ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListQueues input
let list_quick_connects ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListQuickConnects input
let list_realtime_contact_analysis_segments_v2 ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListRealtimeContactAnalysisSegmentsV2
input
let list_routing_profile_manual_assignment_queues ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListRoutingProfileManualAssignmentQueues
input
let list_routing_profile_queues ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListRoutingProfileQueues input
let list_routing_profiles ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListRoutingProfiles input
let list_rules ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListRules input
let list_security_keys ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListSecurityKeys input
let list_security_profile_applications ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListSecurityProfileApplications input
let list_security_profile_flow_modules ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListSecurityProfileFlowModules input
let list_security_profile_permissions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListSecurityProfilePermissions input
let list_security_profiles ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListSecurityProfiles input
let list_tags_for_resource ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTagsForResource input
let list_task_templates ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTaskTemplates input
let list_test_case_execution_records ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTestCaseExecutionRecords input
let list_test_case_executions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTestCaseExecutions input
let list_test_cases ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTestCases input
let list_traffic_distribution_group_users ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTrafficDistributionGroupUsers input
let list_traffic_distribution_groups ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTrafficDistributionGroups input
let list_use_cases ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListUseCases input
let list_user_hierarchy_groups ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListUserHierarchyGroups input
let list_user_notifications ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListUserNotifications input
let list_user_proficiencies ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListUserProficiencies input
let list_users ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListUsers input
let list_view_versions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListViewVersions input
let list_views ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListViews input
let list_workspace_media ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListWorkspaceMedia input
let list_workspace_pages ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListWorkspacePages input
let list_workspaces ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListWorkspaces input
let monitor_contact ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.MonitorContact input
let pause_contact ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.PauseContact input
let put_user_status ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.PutUserStatus input
let release_phone_number ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ReleasePhoneNumber input
let replicate_instance ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ReplicateInstance input
let resume_contact ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ResumeContact input
let resume_contact_recording ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ResumeContactRecording input
let search_agent_statuses ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchAgentStatuses input
let search_available_phone_numbers ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchAvailablePhoneNumbers input
let search_contact_evaluations ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchContactEvaluations input
let search_contact_flow_modules ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchContactFlowModules input
let search_contact_flows ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchContactFlows input
let search_contacts ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchContacts input
let search_data_tables ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchDataTables input
let search_email_addresses ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchEmailAddresses input
let search_evaluation_forms ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchEvaluationForms input
let search_hours_of_operation_overrides ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchHoursOfOperationOverrides input
let search_hours_of_operations ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchHoursOfOperations input
let search_notifications ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchNotifications input
let search_predefined_attributes ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchPredefinedAttributes input
let search_prompts ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchPrompts input
let search_queues ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchQueues input
let search_quick_connects ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchQuickConnects input
let search_resource_tags ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchResourceTags input
let search_routing_profiles ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchRoutingProfiles input
let search_security_profiles ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchSecurityProfiles input
let search_test_cases ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchTestCases input
let search_user_hierarchy_groups ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchUserHierarchyGroups input
let search_users ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchUsers input
let search_views ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchViews input
let search_vocabularies ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchVocabularies input
let search_workspace_associations ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchWorkspaceAssociations input
let search_workspaces ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchWorkspaces input
let send_chat_integration_event ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SendChatIntegrationEvent input
let send_outbound_email ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SendOutboundEmail input
let start_attached_file_upload ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartAttachedFileUpload input
let start_chat_contact ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartChatContact input
let start_contact_evaluation ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartContactEvaluation input
let start_contact_media_processing ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartContactMediaProcessing input
let start_contact_recording ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartContactRecording input
let start_contact_streaming ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartContactStreaming input
let start_email_contact ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartEmailContact input
let start_outbound_chat_contact ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartOutboundChatContact input
let start_outbound_email_contact ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartOutboundEmailContact input
let start_outbound_voice_contact ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartOutboundVoiceContact input
let start_screen_sharing ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartScreenSharing input
let start_task_contact ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartTaskContact input
let start_test_case_execution ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartTestCaseExecution input
let start_web_r_t_c_contact ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartWebRTCContact input
let stop_contact ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StopContact input
let stop_contact_media_processing ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StopContactMediaProcessing input
let stop_contact_recording ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StopContactRecording input
let stop_contact_streaming ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StopContactStreaming input
let stop_test_case_execution ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StopTestCaseExecution input
let submit_contact_evaluation ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SubmitContactEvaluation input
let suspend_contact_recording ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SuspendContactRecording input
let tag_contact ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.TagContact input
let tag_resource ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.TagResource input
let transfer_contact ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.TransferContact input
let untag_contact ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UntagContact input
let untag_resource ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UntagResource input
let update_agent_status ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateAgentStatus input
let update_attached_files_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateAttachedFilesConfiguration input
let update_authentication_profile ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateAuthenticationProfile input
let update_contact ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateContact input
let update_contact_attributes ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateContactAttributes input
let update_contact_evaluation ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateContactEvaluation input
let update_contact_flow_content ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateContactFlowContent input
let update_contact_flow_metadata ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateContactFlowMetadata input
let update_contact_flow_module_alias ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateContactFlowModuleAlias input
let update_contact_flow_module_content ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateContactFlowModuleContent input
let update_contact_flow_module_metadata ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateContactFlowModuleMetadata input
let update_contact_flow_name ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateContactFlowName input
let update_contact_routing_data ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateContactRoutingData input
let update_contact_schedule ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateContactSchedule input
let update_data_table_attribute ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateDataTableAttribute input
let update_data_table_metadata ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateDataTableMetadata input
let update_data_table_primary_values ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateDataTablePrimaryValues input
let update_email_address_metadata ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateEmailAddressMetadata input
let update_evaluation_form ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateEvaluationForm input
let update_hours_of_operation ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateHoursOfOperation input
let update_hours_of_operation_override ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateHoursOfOperationOverride input
let update_instance_attribute ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateInstanceAttribute input
let update_instance_storage_config ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateInstanceStorageConfig input
let update_notification_content ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateNotificationContent input
let update_participant_authentication ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateParticipantAuthentication input
let update_participant_role_config ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateParticipantRoleConfig input
let update_phone_number ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdatePhoneNumber input
let update_phone_number_metadata ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdatePhoneNumberMetadata input
let update_predefined_attribute ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdatePredefinedAttribute input
let update_prompt ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdatePrompt input
let update_queue_hours_of_operation ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateQueueHoursOfOperation input
let update_queue_max_contacts ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateQueueMaxContacts input
let update_queue_name ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateQueueName input
let update_queue_outbound_caller_config ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateQueueOutboundCallerConfig input
let update_queue_outbound_email_config ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateQueueOutboundEmailConfig input
let update_queue_status ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateQueueStatus input
let update_quick_connect_config ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateQuickConnectConfig input
let update_quick_connect_name ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateQuickConnectName input
let update_routing_profile_agent_availability_timer ?endpoint_url ?cfg input
=
eval ?endpoint_url ?cfg
Endpoints.UpdateRoutingProfileAgentAvailabilityTimer input
let update_routing_profile_concurrency ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateRoutingProfileConcurrency input
let update_routing_profile_default_outbound_queue ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateRoutingProfileDefaultOutboundQueue
input
let update_routing_profile_name ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateRoutingProfileName input
let update_routing_profile_queues ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateRoutingProfileQueues input
let update_rule ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateRule input
let update_security_profile ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateSecurityProfile input
let update_task_template ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateTaskTemplate input
let update_test_case ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateTestCase input
let update_traffic_distribution ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateTrafficDistribution input
let update_user_config ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateUserConfig input
let update_user_hierarchy ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateUserHierarchy input
let update_user_hierarchy_group_name ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateUserHierarchyGroupName input
let update_user_hierarchy_structure ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateUserHierarchyStructure input
let update_user_identity_info ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateUserIdentityInfo input
let update_user_notification_status ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateUserNotificationStatus input
let update_user_phone_config ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateUserPhoneConfig input
let update_user_proficiencies ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateUserProficiencies input
let update_user_routing_profile ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateUserRoutingProfile input
let update_user_security_profiles ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateUserSecurityProfiles input
let update_view_content ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateViewContent input
let update_view_metadata ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateViewMetadata input
let update_workspace_metadata ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateWorkspaceMetadata input
let update_workspace_page ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateWorkspacePage input
let update_workspace_theme ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateWorkspaceTheme input
let update_workspace_visibility ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateWorkspaceVisibility input