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
open Awso_quicksight
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 batch_create_topic_reviewed_answer ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchCreateTopicReviewedAnswer input
let batch_delete_topic_reviewed_answer ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchDeleteTopicReviewedAnswer input
let cancel_ingestion ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CancelIngestion input
let create_account_customization ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateAccountCustomization input
let create_account_subscription ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateAccountSubscription input
let create_action_connector ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateActionConnector input
let create_analysis ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateAnalysis input
let create_brand ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateBrand input
let create_custom_permissions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateCustomPermissions input
let create_dashboard ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateDashboard input
let create_data_set ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateDataSet input
let create_data_source ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateDataSource input
let create_folder ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateFolder input
let create_folder_membership ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateFolderMembership input
let create_group ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateGroup input
let create_group_membership ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateGroupMembership input
let create_i_a_m_policy_assignment ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateIAMPolicyAssignment input
let create_ingestion ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateIngestion input
let create_namespace ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateNamespace input
let create_refresh_schedule ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateRefreshSchedule input
let create_role_membership ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateRoleMembership input
let create_template ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateTemplate input
let create_template_alias ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateTemplateAlias input
let create_theme ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateTheme input
let create_theme_alias ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateThemeAlias input
let create_topic ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateTopic input
let create_topic_refresh_schedule ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateTopicRefreshSchedule input
let create_v_p_c_connection ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateVPCConnection input
let delete_account_custom_permission ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteAccountCustomPermission input
let delete_account_customization ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteAccountCustomization input
let delete_account_subscription ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteAccountSubscription input
let delete_action_connector ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteActionConnector input
let delete_analysis ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteAnalysis input
let delete_brand ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteBrand input
let delete_brand_assignment ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteBrandAssignment input
let delete_custom_permissions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteCustomPermissions input
let delete_dashboard ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteDashboard input
let delete_data_set ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteDataSet input
let delete_data_set_refresh_properties ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteDataSetRefreshProperties input
let delete_data_source ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteDataSource input
let delete_default_q_business_application ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteDefaultQBusinessApplication input
let delete_folder ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteFolder input
let delete_folder_membership ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteFolderMembership input
let delete_group ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteGroup input
let delete_group_membership ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteGroupMembership input
let delete_i_a_m_policy_assignment ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteIAMPolicyAssignment input
let delete_identity_propagation_config ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteIdentityPropagationConfig input
let delete_namespace ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteNamespace input
let delete_refresh_schedule ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteRefreshSchedule input
let delete_role_custom_permission ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteRoleCustomPermission input
let delete_role_membership ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteRoleMembership input
let delete_template ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteTemplate input
let delete_template_alias ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteTemplateAlias input
let delete_theme ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteTheme input
let delete_theme_alias ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteThemeAlias input
let delete_topic ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteTopic input
let delete_topic_refresh_schedule ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteTopicRefreshSchedule input
let delete_user ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteUser input
let delete_user_by_principal_id ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteUserByPrincipalId input
let delete_user_custom_permission ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteUserCustomPermission input
let delete_v_p_c_connection ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteVPCConnection input
let describe_account_custom_permission ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeAccountCustomPermission input
let describe_account_customization ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeAccountCustomization input
let describe_account_settings ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeAccountSettings input
let describe_account_subscription ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeAccountSubscription input
let describe_action_connector ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeActionConnector input
let describe_action_connector_permissions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeActionConnectorPermissions input
let describe_analysis ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeAnalysis input
let describe_analysis_definition ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeAnalysisDefinition input
let describe_analysis_permissions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeAnalysisPermissions input
let describe_asset_bundle_export_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeAssetBundleExportJob input
let describe_asset_bundle_import_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeAssetBundleImportJob input
let describe_automation_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeAutomationJob input
let describe_brand ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeBrand input
let describe_brand_assignment ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeBrandAssignment input
let describe_brand_published_version ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeBrandPublishedVersion input
let describe_custom_permissions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeCustomPermissions input
let describe_dashboard ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeDashboard input
let describe_dashboard_definition ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeDashboardDefinition input
let describe_dashboard_permissions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeDashboardPermissions input
let describe_dashboard_snapshot_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeDashboardSnapshotJob input
let describe_dashboard_snapshot_job_result ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeDashboardSnapshotJobResult input
let describe_dashboards_q_a_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeDashboardsQAConfiguration input
let describe_data_set ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeDataSet input
let describe_data_set_permissions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeDataSetPermissions input
let describe_data_set_refresh_properties ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeDataSetRefreshProperties input
let describe_data_source ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeDataSource input
let describe_data_source_permissions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeDataSourcePermissions input
let describe_default_q_business_application ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeDefaultQBusinessApplication input
let describe_folder ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeFolder input
let describe_folder_permissions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeFolderPermissions input
let describe_folder_resolved_permissions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeFolderResolvedPermissions input
let describe_group ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeGroup input
let describe_group_membership ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeGroupMembership input
let describe_i_a_m_policy_assignment ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeIAMPolicyAssignment input
let describe_ingestion ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeIngestion input
let describe_ip_restriction ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeIpRestriction input
let describe_key_registration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeKeyRegistration input
let describe_namespace ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeNamespace input
let describe_q_personalization_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeQPersonalizationConfiguration
input
let describe_quick_sight_q_search_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeQuickSightQSearchConfiguration
input
let describe_refresh_schedule ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeRefreshSchedule input
let describe_role_custom_permission ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeRoleCustomPermission input
let describe_self_upgrade_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeSelfUpgradeConfiguration input
let describe_template ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeTemplate input
let describe_template_alias ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeTemplateAlias input
let describe_template_definition ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeTemplateDefinition input
let describe_template_permissions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeTemplatePermissions input
let describe_theme ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeTheme input
let describe_theme_alias ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeThemeAlias input
let describe_theme_permissions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeThemePermissions input
let describe_topic ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeTopic input
let describe_topic_permissions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeTopicPermissions input
let describe_topic_refresh ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeTopicRefresh input
let describe_topic_refresh_schedule ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeTopicRefreshSchedule input
let describe_user ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeUser input
let describe_v_p_c_connection ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeVPCConnection input
let generate_embed_url_for_anonymous_user ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GenerateEmbedUrlForAnonymousUser input
let generate_embed_url_for_registered_user ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GenerateEmbedUrlForRegisteredUser input
let generate_embed_url_for_registered_user_with_identity ?endpoint_url ?cfg
input =
eval ?endpoint_url ?cfg
Endpoints.GenerateEmbedUrlForRegisteredUserWithIdentity input
let get_dashboard_embed_url ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetDashboardEmbedUrl input
let get_flow_metadata ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetFlowMetadata input
let get_flow_permissions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetFlowPermissions input
let get_identity_context ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetIdentityContext input
let get_session_embed_url ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetSessionEmbedUrl input
let list_action_connectors ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListActionConnectors input
let list_analyses ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListAnalyses input
let list_asset_bundle_export_jobs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListAssetBundleExportJobs input
let list_asset_bundle_import_jobs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListAssetBundleImportJobs input
let list_brands ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListBrands input
let list_custom_permissions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListCustomPermissions input
let list_dashboard_versions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListDashboardVersions input
let list_dashboards ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListDashboards input
let list_data_sets ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListDataSets input
let list_data_sources ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListDataSources input
let list_flows ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListFlows input
let list_folder_members ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListFolderMembers input
let list_folders ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListFolders input
let list_folders_for_resource ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListFoldersForResource input
let list_group_memberships ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListGroupMemberships input
let list_groups ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListGroups input
let list_i_a_m_policy_assignments ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListIAMPolicyAssignments input
let list_i_a_m_policy_assignments_for_user ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListIAMPolicyAssignmentsForUser input
let list_identity_propagation_configs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListIdentityPropagationConfigs input
let list_ingestions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListIngestions input
let list_namespaces ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListNamespaces input
let list_refresh_schedules ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListRefreshSchedules input
let list_role_memberships ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListRoleMemberships input
let list_self_upgrades ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListSelfUpgrades input
let list_tags_for_resource ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTagsForResource input
let list_template_aliases ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTemplateAliases input
let list_template_versions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTemplateVersions input
let list_templates ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTemplates input
let list_theme_aliases ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListThemeAliases input
let list_theme_versions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListThemeVersions input
let list_themes ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListThemes input
let list_topic_refresh_schedules ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTopicRefreshSchedules input
let list_topic_reviewed_answers ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTopicReviewedAnswers input
let list_topics ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTopics input
let list_user_groups ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListUserGroups input
let list_users ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListUsers input
let list_v_p_c_connections ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListVPCConnections input
let predict_q_a_results ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.PredictQAResults input
let put_data_set_refresh_properties ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.PutDataSetRefreshProperties input
let register_user ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.RegisterUser input
let restore_analysis ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.RestoreAnalysis input
let search_action_connectors ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchActionConnectors input
let search_analyses ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchAnalyses input
let search_dashboards ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchDashboards input
let search_data_sets ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchDataSets input
let search_data_sources ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchDataSources input
let search_flows ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchFlows input
let search_folders ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchFolders input
let search_groups ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchGroups input
let search_topics ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchTopics input
let start_asset_bundle_export_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartAssetBundleExportJob input
let start_asset_bundle_import_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartAssetBundleImportJob input
let start_automation_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartAutomationJob input
let start_dashboard_snapshot_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartDashboardSnapshotJob input
let start_dashboard_snapshot_job_schedule ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartDashboardSnapshotJobSchedule input
let tag_resource ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.TagResource input
let untag_resource ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UntagResource input
let update_account_custom_permission ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateAccountCustomPermission input
let update_account_customization ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateAccountCustomization input
let update_account_settings ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateAccountSettings input
let update_action_connector ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateActionConnector input
let update_action_connector_permissions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateActionConnectorPermissions input
let update_analysis ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateAnalysis input
let update_analysis_permissions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateAnalysisPermissions input
let update_application_with_token_exchange_grant ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateApplicationWithTokenExchangeGrant
input
let update_brand ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateBrand input
let update_brand_assignment ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateBrandAssignment input
let update_brand_published_version ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateBrandPublishedVersion input
let update_custom_permissions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateCustomPermissions input
let update_dashboard ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateDashboard input
let update_dashboard_links ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateDashboardLinks input
let update_dashboard_permissions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateDashboardPermissions input
let update_dashboard_published_version ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateDashboardPublishedVersion input
let update_dashboards_q_a_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateDashboardsQAConfiguration input
let update_data_set ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateDataSet input
let update_data_set_permissions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateDataSetPermissions input
let update_data_source ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateDataSource input
let update_data_source_permissions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateDataSourcePermissions input
let update_default_q_business_application ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateDefaultQBusinessApplication input
let update_flow_permissions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateFlowPermissions input
let update_folder ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateFolder input
let update_folder_permissions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateFolderPermissions input
let update_group ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateGroup input
let update_i_a_m_policy_assignment ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateIAMPolicyAssignment input
let update_identity_propagation_config ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateIdentityPropagationConfig input
let update_ip_restriction ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateIpRestriction input
let update_key_registration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateKeyRegistration input
let update_public_sharing_settings ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdatePublicSharingSettings input
let update_q_personalization_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateQPersonalizationConfiguration input
let update_quick_sight_q_search_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateQuickSightQSearchConfiguration
input
let update_refresh_schedule ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateRefreshSchedule input
let update_role_custom_permission ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateRoleCustomPermission input
let update_s_p_i_c_e_capacity_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateSPICECapacityConfiguration input
let update_self_upgrade ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateSelfUpgrade input
let update_self_upgrade_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateSelfUpgradeConfiguration input
let update_template ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateTemplate input
let update_template_alias ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateTemplateAlias input
let update_template_permissions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateTemplatePermissions input
let update_theme ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateTheme input
let update_theme_alias ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateThemeAlias input
let update_theme_permissions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateThemePermissions input
let update_topic ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateTopic input
let update_topic_permissions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateTopicPermissions input
let update_topic_refresh_schedule ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateTopicRefreshSchedule input
let update_user ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateUser input
let update_user_custom_permission ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateUserCustomPermission input
let update_v_p_c_connection ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateVPCConnection input