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
include Cli_0
include Cli_1
let main =
Command.group
~summary:((Awso.Service.to_string Values.service) ^ " commands")
[("activate-evaluation-form", activate_evaluation_form);
("associate-analytics-data-set", associate_analytics_data_set);
("associate-approved-origin", associate_approved_origin);
("associate-bot", associate_bot);
("associate-contact-with-user", associate_contact_with_user);
("associate-default-vocabulary", associate_default_vocabulary);
("associate-email-address-alias", associate_email_address_alias);
("associate-flow", associate_flow);
("associate-hours-of-operations", associate_hours_of_operations);
("associate-instance-storage-config", associate_instance_storage_config);
("associate-lambda-function", associate_lambda_function);
("associate-lex-bot", associate_lex_bot);
("associate-phone-number-contact-flow",
associate_phone_number_contact_flow);
("associate-queue-email-addresses", associate_queue_email_addresses);
("associate-queue-quick-connects", associate_queue_quick_connects);
("associate-routing-profile-queues", associate_routing_profile_queues);
("associate-security-key", associate_security_key);
("associate-security-profiles", associate_security_profiles);
("associate-traffic-distribution-group-user",
associate_traffic_distribution_group_user);
("associate-user-proficiencies", associate_user_proficiencies);
("associate-workspace", associate_workspace);
("batch-associate-analytics-data-set",
batch_associate_analytics_data_set);
("batch-create-data-table-value", batch_create_data_table_value);
("batch-delete-data-table-value", batch_delete_data_table_value);
("batch-describe-data-table-value", batch_describe_data_table_value);
("batch-disassociate-analytics-data-set",
batch_disassociate_analytics_data_set);
("batch-get-attached-file-metadata", batch_get_attached_file_metadata);
("batch-get-flow-association", batch_get_flow_association);
("batch-put-contact", batch_put_contact);
("batch-update-data-table-value", batch_update_data_table_value);
("claim-phone-number", claim_phone_number);
("complete-attached-file-upload", complete_attached_file_upload);
("create-agent-status", create_agent_status);
("create-contact", create_contact);
("create-contact-flow", create_contact_flow);
("create-contact-flow-module", create_contact_flow_module);
("create-contact-flow-module-alias", create_contact_flow_module_alias);
("create-contact-flow-module-version",
create_contact_flow_module_version);
("create-contact-flow-version", create_contact_flow_version);
("create-data-table", create_data_table);
("create-data-table-attribute", create_data_table_attribute);
("create-email-address", create_email_address);
("create-evaluation-form", create_evaluation_form);
("create-hours-of-operation", create_hours_of_operation);
("create-hours-of-operation-override",
create_hours_of_operation_override);
("create-instance", create_instance);
("create-integration-association", create_integration_association);
("create-notification", create_notification);
("create-participant", create_participant);
("create-persistent-contact-association",
create_persistent_contact_association);
("create-predefined-attribute", create_predefined_attribute);
("create-prompt", create_prompt);
("create-push-notification-registration",
create_push_notification_registration);
("create-queue", create_queue);
("create-quick-connect", create_quick_connect);
("create-routing-profile", create_routing_profile);
("create-rule", create_rule);
("create-security-profile", create_security_profile);
("create-task-template", create_task_template);
("create-test-case", create_test_case);
("create-traffic-distribution-group", create_traffic_distribution_group);
("create-use-case", create_use_case);
("create-user", create_user);
("create-user-hierarchy-group", create_user_hierarchy_group);
("create-view", create_view);
("create-view-version", create_view_version);
("create-vocabulary", create_vocabulary);
("create-workspace", create_workspace);
("create-workspace-page", create_workspace_page);
("deactivate-evaluation-form", deactivate_evaluation_form);
("delete-attached-file", delete_attached_file);
("delete-contact-evaluation", delete_contact_evaluation);
("delete-contact-flow", delete_contact_flow);
("delete-contact-flow-module", delete_contact_flow_module);
("delete-contact-flow-module-alias", delete_contact_flow_module_alias);
("delete-contact-flow-module-version",
delete_contact_flow_module_version);
("delete-contact-flow-version", delete_contact_flow_version);
("delete-data-table", delete_data_table);
("delete-data-table-attribute", delete_data_table_attribute);
("delete-email-address", delete_email_address);
("delete-evaluation-form", delete_evaluation_form);
("delete-hours-of-operation", delete_hours_of_operation);
("delete-hours-of-operation-override",
delete_hours_of_operation_override);
("delete-instance", delete_instance);
("delete-integration-association", delete_integration_association);
("delete-notification", delete_notification);
("delete-predefined-attribute", delete_predefined_attribute);
("delete-prompt", delete_prompt);
("delete-push-notification-registration",
delete_push_notification_registration);
("delete-queue", delete_queue);
("delete-quick-connect", delete_quick_connect);
("delete-routing-profile", delete_routing_profile);
("delete-rule", delete_rule);
("delete-security-profile", delete_security_profile);
("delete-task-template", delete_task_template);
("delete-test-case", delete_test_case);
("delete-traffic-distribution-group", delete_traffic_distribution_group);
("delete-use-case", delete_use_case);
("delete-user", delete_user);
("delete-user-hierarchy-group", delete_user_hierarchy_group);
("delete-view", delete_view);
("delete-view-version", delete_view_version);
("delete-vocabulary", delete_vocabulary);
("delete-workspace", delete_workspace);
("delete-workspace-media", delete_workspace_media);
("delete-workspace-page", delete_workspace_page);
("describe-agent-status", describe_agent_status);
("describe-attached-files-configuration",
describe_attached_files_configuration);
("describe-authentication-profile", describe_authentication_profile);
("describe-contact", describe_contact);
("describe-contact-evaluation", describe_contact_evaluation);
("describe-contact-flow", describe_contact_flow);
("describe-contact-flow-module", describe_contact_flow_module);
("describe-contact-flow-module-alias",
describe_contact_flow_module_alias);
("describe-data-table", describe_data_table);
("describe-data-table-attribute", describe_data_table_attribute);
("describe-email-address", describe_email_address);
("describe-evaluation-form", describe_evaluation_form);
("describe-hours-of-operation", describe_hours_of_operation);
("describe-hours-of-operation-override",
describe_hours_of_operation_override);
("describe-instance", describe_instance);
("describe-instance-attribute", describe_instance_attribute);
("describe-instance-storage-config", describe_instance_storage_config);
("describe-notification", describe_notification);
("describe-phone-number", describe_phone_number);
("describe-predefined-attribute", describe_predefined_attribute);
("describe-prompt", describe_prompt);
("describe-queue", describe_queue);
("describe-quick-connect", describe_quick_connect);
("describe-routing-profile", describe_routing_profile);
("describe-rule", describe_rule);
("describe-security-profile", describe_security_profile);
("describe-test-case", describe_test_case);
("describe-traffic-distribution-group",
describe_traffic_distribution_group);
("describe-user", describe_user);
("describe-user-hierarchy-group", describe_user_hierarchy_group);
("describe-user-hierarchy-structure", describe_user_hierarchy_structure);
("describe-view", describe_view);
("describe-vocabulary", describe_vocabulary);
("describe-workspace", describe_workspace);
("disassociate-analytics-data-set", disassociate_analytics_data_set);
("disassociate-approved-origin", disassociate_approved_origin);
("disassociate-bot", disassociate_bot);
("disassociate-email-address-alias", disassociate_email_address_alias);
("disassociate-flow", disassociate_flow);
("disassociate-hours-of-operations", disassociate_hours_of_operations);
("disassociate-instance-storage-config",
disassociate_instance_storage_config);
("disassociate-lambda-function", disassociate_lambda_function);
("disassociate-lex-bot", disassociate_lex_bot);
("disassociate-phone-number-contact-flow",
disassociate_phone_number_contact_flow);
("disassociate-queue-email-addresses",
disassociate_queue_email_addresses);
("disassociate-queue-quick-connects", disassociate_queue_quick_connects);
("disassociate-routing-profile-queues",
disassociate_routing_profile_queues);
("disassociate-security-key", disassociate_security_key);
("disassociate-security-profiles", disassociate_security_profiles);
("disassociate-traffic-distribution-group-user",
disassociate_traffic_distribution_group_user);
("disassociate-user-proficiencies", disassociate_user_proficiencies);
("disassociate-workspace", disassociate_workspace);
("dismiss-user-contact", dismiss_user_contact);
("evaluate-data-table-values", evaluate_data_table_values);
("get-attached-file", get_attached_file);
("get-contact-attributes", get_contact_attributes);
("get-contact-metrics", get_contact_metrics);
("get-current-metric-data", get_current_metric_data);
("get-current-user-data", get_current_user_data);
("get-effective-hours-of-operations", get_effective_hours_of_operations);
("get-federation-token", get_federation_token);
("get-flow-association", get_flow_association);
("get-metric-data", get_metric_data);
("get-metric-data-v2", get_metric_data_v2);
("get-prompt-file", get_prompt_file);
("get-task-template", get_task_template);
("get-test-case-execution-summary", get_test_case_execution_summary);
("get-traffic-distribution", get_traffic_distribution);
("import-phone-number", import_phone_number);
("import-workspace-media", import_workspace_media);
("list-agent-statuses", list_agent_statuses);
("list-analytics-data-associations", list_analytics_data_associations);
("list-analytics-data-lake-data-sets",
list_analytics_data_lake_data_sets);
("list-approved-origins", list_approved_origins);
("list-associated-contacts", list_associated_contacts);
("list-attached-files-configurations",
list_attached_files_configurations);
("list-authentication-profiles", list_authentication_profiles);
("list-bots", list_bots);
("list-child-hours-of-operations", list_child_hours_of_operations);
("list-contact-evaluations", list_contact_evaluations);
("list-contact-flow-module-aliases", list_contact_flow_module_aliases);
("list-contact-flow-module-versions", list_contact_flow_module_versions);
("list-contact-flow-modules", list_contact_flow_modules);
("list-contact-flow-versions", list_contact_flow_versions);
("list-contact-flows", list_contact_flows);
("list-contact-references", list_contact_references);
("list-data-table-attributes", list_data_table_attributes);
("list-data-table-primary-values", list_data_table_primary_values);
("list-data-table-values", list_data_table_values);
("list-data-tables", list_data_tables);
("list-default-vocabularies", list_default_vocabularies);
("list-entity-security-profiles", list_entity_security_profiles);
("list-evaluation-form-versions", list_evaluation_form_versions);
("list-evaluation-forms", list_evaluation_forms);
("list-flow-associations", list_flow_associations);
("list-hours-of-operation-overrides", list_hours_of_operation_overrides);
("list-hours-of-operations", list_hours_of_operations);
("list-instance-attributes", list_instance_attributes);
("list-instance-storage-configs", list_instance_storage_configs);
("list-instances", list_instances);
("list-integration-associations", list_integration_associations);
("list-lambda-functions", list_lambda_functions);
("list-lex-bots", list_lex_bots);
("list-notifications", list_notifications);
("list-phone-numbers", list_phone_numbers);
("list-phone-numbers-v2", list_phone_numbers_v2);
("list-predefined-attributes", list_predefined_attributes);
("list-prompts", list_prompts);
("list-queue-email-addresses", list_queue_email_addresses);
("list-queue-quick-connects", list_queue_quick_connects);
("list-queues", list_queues);
("list-quick-connects", list_quick_connects);
("list-realtime-contact-analysis-segments-v2",
list_realtime_contact_analysis_segments_v2);
("list-routing-profile-manual-assignment-queues",
list_routing_profile_manual_assignment_queues);
("list-routing-profile-queues", list_routing_profile_queues);
("list-routing-profiles", list_routing_profiles);
("list-rules", list_rules);
("list-security-keys", list_security_keys);
("list-security-profile-applications",
list_security_profile_applications);
("list-security-profile-flow-modules",
list_security_profile_flow_modules);
("list-security-profile-permissions", list_security_profile_permissions);
("list-security-profiles", list_security_profiles);
("list-tags-for-resource", list_tags_for_resource);
("list-task-templates", list_task_templates);
("list-test-case-execution-records", list_test_case_execution_records);
("list-test-case-executions", list_test_case_executions);
("list-test-cases", list_test_cases);
("list-traffic-distribution-group-users",
list_traffic_distribution_group_users);
("list-traffic-distribution-groups", list_traffic_distribution_groups);
("list-use-cases", list_use_cases);
("list-user-hierarchy-groups", list_user_hierarchy_groups);
("list-user-notifications", list_user_notifications);
("list-user-proficiencies", list_user_proficiencies);
("list-users", list_users);
("list-view-versions", list_view_versions);
("list-views", list_views);
("list-workspace-media", list_workspace_media);
("list-workspace-pages", list_workspace_pages);
("list-workspaces", list_workspaces);
("monitor-contact", monitor_contact);
("pause-contact", pause_contact);
("put-user-status", put_user_status);
("release-phone-number", release_phone_number);
("replicate-instance", replicate_instance);
("resume-contact", resume_contact);
("resume-contact-recording", resume_contact_recording);
("search-agent-statuses", search_agent_statuses);
("search-available-phone-numbers", search_available_phone_numbers);
("search-contact-evaluations", search_contact_evaluations);
("search-contact-flow-modules", search_contact_flow_modules);
("search-contact-flows", search_contact_flows);
("search-contacts", search_contacts);
("search-data-tables", search_data_tables);
("search-email-addresses", search_email_addresses);
("search-evaluation-forms", search_evaluation_forms);
("search-hours-of-operation-overrides",
search_hours_of_operation_overrides);
("search-hours-of-operations", search_hours_of_operations);
("search-notifications", search_notifications);
("search-predefined-attributes", search_predefined_attributes);
("search-prompts", search_prompts);
("search-queues", search_queues);
("search-quick-connects", search_quick_connects);
("search-resource-tags", search_resource_tags);
("search-routing-profiles", search_routing_profiles);
("search-security-profiles", search_security_profiles);
("search-test-cases", search_test_cases);
("search-user-hierarchy-groups", search_user_hierarchy_groups);
("search-users", search_users);
("search-views", search_views);
("search-vocabularies", search_vocabularies);
("search-workspace-associations", search_workspace_associations);
("search-workspaces", search_workspaces);
("send-chat-integration-event", send_chat_integration_event);
("send-outbound-email", send_outbound_email);
("start-attached-file-upload", start_attached_file_upload);
("start-chat-contact", start_chat_contact);
("start-contact-evaluation", start_contact_evaluation);
("start-contact-media-processing", start_contact_media_processing);
("start-contact-recording", start_contact_recording);
("start-contact-streaming", start_contact_streaming);
("start-email-contact", start_email_contact);
("start-outbound-chat-contact", start_outbound_chat_contact);
("start-outbound-email-contact", start_outbound_email_contact);
("start-outbound-voice-contact", start_outbound_voice_contact);
("start-screen-sharing", start_screen_sharing);
("start-task-contact", start_task_contact);
("start-test-case-execution", start_test_case_execution);
("start-web-r-t-c-contact", start_web_r_t_c_contact);
("stop-contact", stop_contact);
("stop-contact-media-processing", stop_contact_media_processing);
("stop-contact-recording", stop_contact_recording);
("stop-contact-streaming", stop_contact_streaming);
("stop-test-case-execution", stop_test_case_execution);
("submit-contact-evaluation", submit_contact_evaluation);
("suspend-contact-recording", suspend_contact_recording);
("tag-contact", tag_contact);
("tag-resource", tag_resource);
("transfer-contact", transfer_contact);
("untag-contact", untag_contact);
("untag-resource", untag_resource);
("update-agent-status", update_agent_status);
("update-attached-files-configuration",
update_attached_files_configuration);
("update-authentication-profile", update_authentication_profile);
("update-contact", update_contact);
("update-contact-attributes", update_contact_attributes);
("update-contact-evaluation", update_contact_evaluation);
("update-contact-flow-content", update_contact_flow_content);
("update-contact-flow-metadata", update_contact_flow_metadata);
("update-contact-flow-module-alias", update_contact_flow_module_alias);
("update-contact-flow-module-content",
update_contact_flow_module_content);
("update-contact-flow-module-metadata",
update_contact_flow_module_metadata);
("update-contact-flow-name", update_contact_flow_name);
("update-contact-routing-data", update_contact_routing_data);
("update-contact-schedule", update_contact_schedule);
("update-data-table-attribute", update_data_table_attribute);
("update-data-table-metadata", update_data_table_metadata);
("update-data-table-primary-values", update_data_table_primary_values);
("update-email-address-metadata", update_email_address_metadata);
("update-evaluation-form", update_evaluation_form);
("update-hours-of-operation", update_hours_of_operation);
("update-hours-of-operation-override",
update_hours_of_operation_override);
("update-instance-attribute", update_instance_attribute);
("update-instance-storage-config", update_instance_storage_config);
("update-notification-content", update_notification_content);
("update-participant-authentication", update_participant_authentication);
("update-participant-role-config", update_participant_role_config);
("update-phone-number", update_phone_number);
("update-phone-number-metadata", update_phone_number_metadata);
("update-predefined-attribute", update_predefined_attribute);
("update-prompt", update_prompt);
("update-queue-hours-of-operation", update_queue_hours_of_operation);
("update-queue-max-contacts", update_queue_max_contacts);
("update-queue-name", update_queue_name);
("update-queue-outbound-caller-config",
update_queue_outbound_caller_config);
("update-queue-outbound-email-config",
update_queue_outbound_email_config);
("update-queue-status", update_queue_status);
("update-quick-connect-config", update_quick_connect_config);
("update-quick-connect-name", update_quick_connect_name);
("update-routing-profile-agent-availability-timer",
update_routing_profile_agent_availability_timer);
("update-routing-profile-concurrency",
update_routing_profile_concurrency);
("update-routing-profile-default-outbound-queue",
update_routing_profile_default_outbound_queue);
("update-routing-profile-name", update_routing_profile_name);
("update-routing-profile-queues", update_routing_profile_queues);
("update-rule", update_rule);
("update-security-profile", update_security_profile);
("update-task-template", update_task_template);
("update-test-case", update_test_case);
("update-traffic-distribution", update_traffic_distribution);
("update-user-config", update_user_config);
("update-user-hierarchy", update_user_hierarchy);
("update-user-hierarchy-group-name", update_user_hierarchy_group_name);
("update-user-hierarchy-structure", update_user_hierarchy_structure);
("update-user-identity-info", update_user_identity_info);
("update-user-notification-status", update_user_notification_status);
("update-user-phone-config", update_user_phone_config);
("update-user-proficiencies", update_user_proficiencies);
("update-user-routing-profile", update_user_routing_profile);
("update-user-security-profiles", update_user_security_profiles);
("update-view-content", update_view_content);
("update-view-metadata", update_view_metadata);
("update-workspace-metadata", update_workspace_metadata);
("update-workspace-page", update_workspace_page);
("update-workspace-theme", update_workspace_theme);
("update-workspace-visibility", update_workspace_visibility)]