Class: Aws::QuickSight::Types::Capabilities

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb

Overview

A set of actions that correspond to Amazon Quick Sight permissions.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#access_apps_native_data_store ⇒ String

The ability to access the native data store for new and existing apps.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#action ⇒ String

The ability to perform actions in external services through Action connectors. Actions allow users to interact with third-party systems.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#add_or_run_anomaly_detection_for_analyses ⇒ String

The ability to add or run anomaly detection.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#adobe_action ⇒ String

The ability to perform actions using Adobe Marketing Agent connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#airtable_action ⇒ String

The ability to perform actions using Airtable connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#amazon_bedrock_ars_action ⇒ String

The ability to perform actions using Bedrock Agent connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#amazon_bedrock_fs_action ⇒ String

The ability to perform actions using Bedrock Runtime connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#amazon_bedrock_krs_action ⇒ String

The ability to perform actions using Bedrock Data Automation Runtime connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#amazon_s_three_action ⇒ String

The ability to perform actions using Amazon S3 connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#analysis ⇒ String

The ability to perform analysis-related actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#approve_flow_share_requests ⇒ String

The ability to review and approve sharing requests of Flows.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#apps ⇒ String

The ability to perform apps-related actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#asana_action ⇒ String

The ability to perform actions using Asana connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#automate ⇒ String

The ability to perform automate-related actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#bamboo_hr_action ⇒ String

The ability to perform actions using BambooHR connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#bedrock_managed_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#bee_action ⇒ String

The ability to perform actions using Bee connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#box_agent_action ⇒ String

The ability to perform actions using Box Agent connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#box_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#build_calculated_field_with_q ⇒ String

The ability to Build Calculation with AI

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#canva_agent_action ⇒ String

The ability to perform actions using Canva Agent connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#chat_agent ⇒ String

The ability to perform chat-related actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#cisco_webex_meetings_action ⇒ String

The ability to perform actions using Cisco Webex Meetings connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#cisco_webex_vidcast_action ⇒ String

The ability to perform actions using Cisco Webex Video Messaging Agent connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#comprehend_action ⇒ String

The ability to perform actions using Comprehend connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#comprehend_medical_action ⇒ String

The ability to perform actions using Comprehend Medical connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#confluence_action ⇒ String

The ability to perform actions using Atlassian Confluence Cloud connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#confluence_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_adobe_action ⇒ String

The ability to create and update Adobe Marketing Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_airtable_action ⇒ String

The ability to create and update Airtable actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_amazon_bedrock_ars_action ⇒ String

The ability to create and update Bedrock Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_amazon_bedrock_fs_action ⇒ String

The ability to create and update Bedrock Runtime actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_amazon_bedrock_krs_action ⇒ String

The ability to create and update Bedrock Data Automation Runtime actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_amazon_s_three_action ⇒ String

The ability to create and update Amazon S3 actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_apps ⇒ String

The ability to create or update apps.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_asana_action ⇒ String

The ability to create and update Asana actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_bamboo_hr_action ⇒ String

The ability to create and update BambooHR actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_bedrock_managed_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_bee_action ⇒ String

The ability to create and update Bee actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_box_agent_action ⇒ String

The ability to create and update Box Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_box_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_canva_agent_action ⇒ String

The ability to create and update Canva Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_cisco_webex_meetings_action ⇒ String

The ability to create and update Cisco Webex Meetings actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_cisco_webex_vidcast_action ⇒ String

The ability to create and update Cisco Webex Video Messaging Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_comprehend_action ⇒ String

The ability to create and update Comprehend actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_comprehend_medical_action ⇒ String

The ability to create and update Comprehend Medical actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_confluence_action ⇒ String

The ability to create and update Atlassian Confluence Cloud actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_confluence_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_dashboard_email_reports ⇒ String

The ability to create and update email reports.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_data_sources ⇒ String

The ability to create and update data sources.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_datasets ⇒ String

The ability to create and update datasets.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_dropbox_action ⇒ String

The ability to create and update Dropbox actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_dun_and_bradstreet_action ⇒ String

The ability to create and update Dun and Bradstreet actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_fact_set_action ⇒ String

The ability to create and update FactSet actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_figma_action ⇒ String

The ability to create and update Figma actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_generic_http_action ⇒ String

The ability to create and update REST API connection actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_github_action ⇒ String

The ability to create and update GitHub actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_gmail_action ⇒ String

The ability to create and update Gmail actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_google_analytics_action ⇒ String

The ability to create and update Google Analytics actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_google_calendar_action ⇒ String

The ability to create and update Google Calendar actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_google_chat_action ⇒ String

The ability to create and update Google Chat actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_google_docs_action ⇒ String

The ability to create and update Google Docs actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_google_drive_action ⇒ String

The ability to create and update Google Drive actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_google_drive_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_google_meet_action ⇒ String

The ability to create and update Google Meet actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_google_sheets_action ⇒ String

The ability to create and update Google Sheets actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_google_slides_action ⇒ String

The ability to create and update Google Slides actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_hg_insights_action ⇒ String

The ability to create and update HG Insights Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_hubspot_action ⇒ String

The ability to create and update Hubspot actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_hugging_face_action ⇒ String

The ability to create and update HuggingFace actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_idc_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_intercom_action ⇒ String

The ability to create and update Intercom actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_jira_action ⇒ String

The ability to create and update Jira actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_knowledge_bases ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_linear_action ⇒ String

The ability to create and update Linear actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_mcp_action ⇒ String

The ability to create and update Model Context Protocol actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_monday_action ⇒ String

The ability to create and update Monday actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_moodys_action ⇒ String

The ability to create and update Moody's GenAI Ready Data actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_ms_exchange_action ⇒ String

The ability to create and update Microsoft Outlook actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_ms_teams_action ⇒ String

The ability to create and update Microsoft Teams actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_new_relic_action ⇒ String

The ability to create and update New Relic actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_notion_action ⇒ String

The ability to create and update Notion actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_one_drive_action ⇒ String

The ability to create and update Microsoft OneDrive actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_one_drive_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_one_note_action ⇒ String

The ability to create and update Microsoft OneNote actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_open_api_action ⇒ String

The ability to create and update OpenAPI Specification actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_pager_duty_action ⇒ String

The ability to create and update PagerDuty Advance actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_pager_duty_agent_action ⇒ String

The ability to create and update PagerDuty Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_q_business_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_quick_books_action ⇒ String

The ability to create and update QuickBooks actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_s3_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_salesforce_action ⇒ String

The ability to create and update Salesforce actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_sand_p_global_energy_action ⇒ String

The ability to create and update S&P Global Energy actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_sand_pgmi_action ⇒ String

The ability to create and update S&P Global Market Intelligence actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_sap_bill_of_material_action ⇒ String

The ability to create and update SAP Bill of Materials actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_sap_business_partner_action ⇒ String

The ability to create and update SAP Business Partner actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_sap_material_stock_action ⇒ String

The ability to create and update SAP Material Stock actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_sap_physical_inventory_action ⇒ String

The ability to create and update SAP Physical Inventory actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_sap_product_master_data_action ⇒ String

The ability to create and update SAP Product Master actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_service_now_action ⇒ String

The ability to create and update ServiceNow actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_share_point_action ⇒ String

The ability to create and update Microsoft SharePoint Online actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_share_point_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_shopify_action ⇒ String

The ability to create and update Shopify actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_slack_action ⇒ String

The ability to create and update Slack actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_smartsheet_action ⇒ String

The ability to create and update Smartsheet actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_snow_flake_action ⇒ String

The ability to create and update Snowflake Cortex Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_textract_action ⇒ String

The ability to create and update Textract actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_themes ⇒ String

The ability to export to Create and Update themes.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_threshold_alerts ⇒ String

The ability to create and update threshold alerts.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_visier_agent_action ⇒ String

The ability to create and update Visier Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_web_crawler_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_whats_app_action ⇒ String

The ability to create and update WhatsApp actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_zapier_action ⇒ String

The ability to create and update Zapier Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_zendesk_action ⇒ String

The ability to create and update Zendesk actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_zoom_action ⇒ String

The ability to create and update Zoom actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_and_update_zoom_info_action ⇒ String

The ability to create and update ZoomInfo Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_chat_agents ⇒ String

The ability to create chat agents.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_dashboard_executive_summary_with_q ⇒ String

The ability to Create Executive Summary

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_shared_folders ⇒ String

The ability to create shared folders.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_spaces ⇒ String

The ability to create spaces.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#create_spice_dataset ⇒ String

The ability to create a SPICE dataset.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#dashboard ⇒ String

The ability to perform dashboard-related actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#dropbox_action ⇒ String

The ability to perform actions using Dropbox connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#dun_and_bradstreet_action ⇒ String

The ability to perform actions using Dun and Bradstreet connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#edit_visual_with_q ⇒ String

The ability to Edit Visual with AI

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#export_to_csv ⇒ String

The ability to export to CSV files from the UI.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#export_to_csv_in_scheduled_reports ⇒ String

The ability to export to CSV files in scheduled email reports.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#export_to_excel ⇒ String

The ability to export to Excel files from the UI.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#export_to_excel_in_scheduled_reports ⇒ String

The ability to export to Excel files in scheduled email reports.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#export_to_pdf ⇒ String

The ability to export to PDF files from the UI.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#export_to_pdf_in_scheduled_reports ⇒ String

The ability to export to PDF files in scheduled email reports.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#extension ⇒ String

The ability to perform Extension-related actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#fact_set_action ⇒ String

The ability to perform actions using FactSet connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#figma_action ⇒ String

The ability to perform actions using Figma connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#flow ⇒ String

The ability to perform flow-related actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#generate_analyses ⇒ String

The ability to generate analysis using AI

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#generic_http_action ⇒ String

The ability to perform actions using REST API connection connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#github_action ⇒ String

The ability to perform actions using GitHub connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#gmail_action ⇒ String

The ability to perform actions using Gmail connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#google_analytics_action ⇒ String

The ability to perform actions using Google Analytics connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#google_calendar_action ⇒ String

The ability to perform actions using Google Calendar connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#google_chat_action ⇒ String

The ability to perform actions using Google Chat connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#google_docs_action ⇒ String

The ability to perform actions using Google Docs connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#google_drive_action ⇒ String

The ability to perform actions using Google Drive connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#google_drive_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#google_meet_action ⇒ String

The ability to perform actions using Google Meet connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#google_sheets_action ⇒ String

The ability to perform actions using Google Sheets connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#google_slides_action ⇒ String

The ability to perform actions using Google Slides connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#hg_insights_action ⇒ String

The ability to perform actions using HG Insights Agent connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#hubspot_action ⇒ String

The ability to perform actions using Hubspot connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#hugging_face_action ⇒ String

The ability to perform actions using HuggingFace connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#idc_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#inbound_email_trigger ⇒ String

The ability to create, view, edit, delete, and run inbound email triggers for flows and automations.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#include_content_in_scheduled_reports_email ⇒ String

The ability to include content in scheduled email reports.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#intercom_action ⇒ String

The ability to perform actions using Intercom connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#invoke_apps_ai_inference ⇒ String

The ability to add and invoke AI inference in new and existing apps.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#jira_action ⇒ String

The ability to perform actions using Jira connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#knowledge_base ⇒ String

The ability to use knowledge bases to specify content from external applications.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#linear_action ⇒ String

The ability to perform actions using Linear connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#manage_shared_folders ⇒ String

The ability to create, update, delete and view shared folders (both restricted and unrestricted), ability to add any asset to shared folders, and ability to share the folders.

Note: This does not prevent inheriting access to assets that others share with them through folder membership.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#mcp_action ⇒ String

The ability to perform actions using Model Context Protocol connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#monday_action ⇒ String

The ability to perform actions using Monday connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#moodys_action ⇒ String

The ability to perform actions using Moody's GenAI Ready Data connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#ms_exchange_action ⇒ String

The ability to perform actions using Microsoft Outlook connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#ms_teams_action ⇒ String

The ability to perform actions using Microsoft Teams connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#new_relic_action ⇒ String

The ability to perform actions using New Relic connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#notion_action ⇒ String

The ability to perform actions using Notion connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#one_drive_action ⇒ String

The ability to perform actions using Microsoft OneDrive connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#one_drive_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#one_note_action ⇒ String

The ability to perform actions using Microsoft OneNote connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#open_api_action ⇒ String

The ability to perform actions using OpenAPI Specification connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#pager_duty_action ⇒ String

The ability to perform actions using PagerDuty Advance connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#pager_duty_agent_action ⇒ String

The ability to perform actions using PagerDuty Agent connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#perform_flow_ui_task ⇒ String

The ability to use UI Agent step to perform tasks on public websites.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

The ability to print reports.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#publish_without_approval ⇒ String

The ability to enable approvals for flow share.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#q_business_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#quick_books_action ⇒ String

The ability to perform actions using QuickBooks connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#quick_event_trigger ⇒ String

The ability to create, view, edit, delete, and run Quick event triggers for flows and automations.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#rename_shared_folders ⇒ String

The ability to rename shared folders.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#research ⇒ String

The ability to perform research-related actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#s3_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#salesforce_action ⇒ String

The ability to perform actions using Salesforce connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#sand_p_global_energy_action ⇒ String

The ability to perform actions using S&P Global Energy connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#sand_pgmi_action ⇒ String

The ability to perform actions using S&P Global Market Intelligence connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#sap_bill_of_material_action ⇒ String

The ability to perform actions using SAP Bill of Materials connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#sap_business_partner_action ⇒ String

The ability to perform actions using SAP Business Partner connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#sap_material_stock_action ⇒ String

The ability to perform actions using SAP Material Stock connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#sap_physical_inventory_action ⇒ String

The ability to perform actions using SAP Physical Inventory connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#sap_product_master_data_action ⇒ String

The ability to perform actions using SAP Product Master connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#scenario ⇒ String

The ability to perform Scenario-related actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#schedule_trigger ⇒ String

The ability to create, view, edit, delete, and run schedule triggers for flows and automations.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#self_upgrade_user_role ⇒ String

The ability to enable users to upgrade their user role.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#service_now_action ⇒ String

The ability to perform actions using ServiceNow connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_adobe_action ⇒ String

The ability to share Adobe Marketing Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_airtable_action ⇒ String

The ability to share Airtable actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_amazon_bedrock_ars_action ⇒ String

The ability to share Bedrock Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_amazon_bedrock_fs_action ⇒ String

The ability to share Bedrock Runtime actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_amazon_bedrock_krs_action ⇒ String

The ability to share Bedrock Data Automation Runtime actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_amazon_s_three_action ⇒ String

The ability to share Amazon S3 actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_analyses ⇒ String

The ability to share analyses.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_apps ⇒ String

The ability to share apps with other users.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_asana_action ⇒ String

The ability to share Asana actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_bamboo_hr_action ⇒ String

The ability to share BambooHR actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_bedrock_managed_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_bee_action ⇒ String

The ability to share Bee actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_box_agent_action ⇒ String

The ability to share Box Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_box_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_canva_agent_action ⇒ String

The ability to share Canva Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_chat_agents ⇒ String

The ability to share chat agents with other users and groups.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_cisco_webex_meetings_action ⇒ String

The ability to share Cisco Webex Meetings actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_cisco_webex_vidcast_action ⇒ String

The ability to share Cisco Webex Video Messaging Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_comprehend_action ⇒ String

The ability to share Comprehend actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_comprehend_medical_action ⇒ String

The ability to share Comprehend Medical actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_confluence_action ⇒ String

The ability to share Atlassian Confluence Cloud actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_confluence_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_dashboards ⇒ String

The ability to share dashboards.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_data_sources ⇒ String

The ability to share data sources.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_datasets ⇒ String

The ability to share datasets.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_dropbox_action ⇒ String

The ability to share Dropbox actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_dun_and_bradstreet_action ⇒ String

The ability to share Dun and Bradstreet actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_fact_set_action ⇒ String

The ability to share FactSet actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_figma_action ⇒ String

The ability to share Figma actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_generic_http_action ⇒ String

The ability to share REST API connection actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_github_action ⇒ String

The ability to share GitHub actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_gmail_action ⇒ String

The ability to share Gmail actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_google_analytics_action ⇒ String

The ability to share Google Analytics actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_google_calendar_action ⇒ String

The ability to share Google Calendar actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_google_chat_action ⇒ String

The ability to share Google Chat actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_google_docs_action ⇒ String

The ability to share Google Docs actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_google_drive_action ⇒ String

The ability to share Google Drive actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_google_drive_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_google_meet_action ⇒ String

The ability to share Google Meet actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_google_sheets_action ⇒ String

The ability to share Google Sheets actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_google_slides_action ⇒ String

The ability to share Google Slides actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_hg_insights_action ⇒ String

The ability to share HG Insights Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_hubspot_action ⇒ String

The ability to share Hubspot actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_hugging_face_action ⇒ String

The ability to share HuggingFace actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_idc_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_intercom_action ⇒ String

The ability to share Intercom actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_jira_action ⇒ String

The ability to share Jira actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_knowledge_bases ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_linear_action ⇒ String

The ability to share Linear actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_mcp_action ⇒ String

The ability to share Model Context Protocol actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_monday_action ⇒ String

The ability to share Monday actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_moodys_action ⇒ String

The ability to share Moody's GenAI Ready Data actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_ms_exchange_action ⇒ String

The ability to share Microsoft Outlook actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_ms_teams_action ⇒ String

The ability to share Microsoft Teams actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_new_relic_action ⇒ String

The ability to share New Relic actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_notion_action ⇒ String

The ability to share Notion actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_one_drive_action ⇒ String

The ability to share Microsoft OneDrive actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_one_drive_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_one_note_action ⇒ String

The ability to share Microsoft OneNote actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_open_api_action ⇒ String

The ability to share OpenAPI Specification actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_pager_duty_action ⇒ String

The ability to share PagerDuty Advance actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_pager_duty_agent_action ⇒ String

The ability to share PagerDuty Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_point_action ⇒ String

The ability to perform actions using Microsoft SharePoint Online connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_point_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_q_business_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_quick_books_action ⇒ String

The ability to share QuickBooks actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_s3_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_salesforce_action ⇒ String

The ability to share Salesforce actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_sand_p_global_energy_action ⇒ String

The ability to share S&P Global Energy actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_sand_pgmi_action ⇒ String

The ability to share S&P Global Market Intelligence actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_sap_bill_of_material_action ⇒ String

The ability to share SAP Bill of Materials actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_sap_business_partner_action ⇒ String

The ability to share SAP Business Partner actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_sap_material_stock_action ⇒ String

The ability to share SAP Material Stock actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_sap_physical_inventory_action ⇒ String

The ability to share SAP Physical Inventory actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_sap_product_master_data_action ⇒ String

The ability to share SAP Product Master actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_service_now_action ⇒ String

The ability to share ServiceNow actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_share_point_action ⇒ String

The ability to share Microsoft SharePoint Online actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_share_point_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_shopify_action ⇒ String

The ability to share Shopify actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_slack_action ⇒ String

The ability to share Slack actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_smartsheet_action ⇒ String

The ability to share Smartsheet actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_snow_flake_action ⇒ String

The ability to share Snowflake Cortex Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_spaces ⇒ String

The ability to share spaces with other users and groups.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_textract_action ⇒ String

The ability to share Textract actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_visier_agent_action ⇒ String

The ability to share Visier Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_web_crawler_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_whats_app_action ⇒ String

The ability to share WhatsApp actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_zapier_action ⇒ String

The ability to share Zapier Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_zendesk_action ⇒ String

The ability to share Zendesk actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_zoom_action ⇒ String

The ability to share Zoom actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#share_zoom_info_action ⇒ String

The ability to share ZoomInfo Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#shopify_action ⇒ String

The ability to perform actions using Shopify connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#slack_action ⇒ String

The ability to perform actions using Slack connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#smartsheet_action ⇒ String

The ability to perform actions using Smartsheet connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#snow_flake_action ⇒ String

The ability to perform actions using Snowflake Cortex Agent connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#space ⇒ String

The ability to perform space-related actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#story ⇒ String

The ability to perform Story-related actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#subscribe_dashboard_email_reports ⇒ String

The ability to subscribe to email reports.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#textract_action ⇒ String

The ability to perform actions using Textract connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#topic ⇒ String

The ability to perform Topic-related actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#trigger ⇒ String

The ability to manage trigger-related settings for flows and automations.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_adobe_action ⇒ String

The ability to use Adobe Marketing Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_agent_web_search ⇒ String

The ability to use internet to enhance results in Chat Agents, Flows, and Quick Research. Web search queries will be processed securely in an Amazon Web Services region us-east-1.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_airtable_action ⇒ String

The ability to use Airtable actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_amazon_bedrock_ars_action ⇒ String

The ability to use Bedrock Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_amazon_bedrock_fs_action ⇒ String

The ability to use Bedrock Runtime actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_amazon_bedrock_krs_action ⇒ String

The ability to use Bedrock Data Automation Runtime actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_amazon_s_three_action ⇒ String

The ability to use Amazon S3 actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_asana_action ⇒ String

The ability to use Asana actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_bamboo_hr_action ⇒ String

The ability to use BambooHR actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_bedrock_managed_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_bedrock_models ⇒ String

The ability to use Bedrock models for general knowledge step in flows.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_bee_action ⇒ String

The ability to use Bee actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_box_agent_action ⇒ String

The ability to use Box Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_box_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_browser_extension ⇒ String

The ability to use Amazon Quick through the browser extension for Chrome, Firefox, and Edge.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_canva_agent_action ⇒ String

The ability to use Canva Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_cisco_webex_meetings_action ⇒ String

The ability to use Cisco Webex Meetings actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_cisco_webex_vidcast_action ⇒ String

The ability to use Cisco Webex Video Messaging Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_comprehend_action ⇒ String

The ability to use Comprehend actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_comprehend_medical_action ⇒ String

The ability to use Comprehend Medical actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_confluence_action ⇒ String

The ability to use Atlassian Confluence Cloud actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_confluence_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_dropbox_action ⇒ String

The ability to use Dropbox actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_dun_and_bradstreet_action ⇒ String

The ability to use Dun and Bradstreet actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_excel_add_in_extension ⇒ String

The ability to use Amazon Quick through the Microsoft Excel add-in.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_fact_set_action ⇒ String

The ability to use FactSet actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_figma_action ⇒ String

The ability to use Figma actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_generic_http_action ⇒ String

The ability to use REST API connection actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_github_action ⇒ String

The ability to use GitHub actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_gmail_action ⇒ String

The ability to use Gmail actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_google_analytics_action ⇒ String

The ability to use Google Analytics actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_google_calendar_action ⇒ String

The ability to use Google Calendar actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_google_chat_action ⇒ String

The ability to use Google Chat actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_google_docs_action ⇒ String

The ability to use Google Docs actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_google_drive_action ⇒ String

The ability to use Google Drive actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_google_drive_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_google_meet_action ⇒ String

The ability to use Google Meet actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_google_sheets_action ⇒ String

The ability to use Google Sheets actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_google_slides_action ⇒ String

The ability to use Google Slides actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_hg_insights_action ⇒ String

The ability to use HG Insights Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_hubspot_action ⇒ String

The ability to use Hubspot actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_hugging_face_action ⇒ String

The ability to use HuggingFace actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_idc_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_intercom_action ⇒ String

The ability to use Intercom actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_jira_action ⇒ String

The ability to use Jira actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_linear_action ⇒ String

The ability to use Linear actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_mcp_action ⇒ String

The ability to use Model Context Protocol actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_monday_action ⇒ String

The ability to use Monday actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_moodys_action ⇒ String

The ability to use Moody's GenAI Ready Data actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_ms_exchange_action ⇒ String

The ability to use Microsoft Outlook actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_ms_teams_action ⇒ String

The ability to use Microsoft Teams actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_new_relic_action ⇒ String

The ability to use New Relic actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_notion_action ⇒ String

The ability to use Notion actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_one_drive_action ⇒ String

The ability to use Microsoft OneDrive actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_one_drive_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_one_note_action ⇒ String

The ability to use Microsoft OneNote actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_open_api_action ⇒ String

The ability to use OpenAPI Specification actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_outlook_add_in_extension ⇒ String

The ability to use Amazon Quick through the Microsoft Outlook add-in.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_pager_duty_action ⇒ String

The ability to use PagerDuty Advance actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_pager_duty_agent_action ⇒ String

The ability to use PagerDuty Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_powerpoint_add_in_extension ⇒ String

The ability to use Amazon Quick through the Microsoft PowerPoint add-in.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_q_business_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_quick_books_action ⇒ String

The ability to use QuickBooks actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_s3_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_salesforce_action ⇒ String

The ability to use Salesforce actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_sand_p_global_energy_action ⇒ String

The ability to use S&P Global Energy actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_sand_pgmi_action ⇒ String

The ability to use S&P Global Market Intelligence actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_sap_bill_of_material_action ⇒ String

The ability to use SAP Bill of Materials actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_sap_business_partner_action ⇒ String

The ability to use SAP Business Partner actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_sap_material_stock_action ⇒ String

The ability to use SAP Material Stock actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_sap_physical_inventory_action ⇒ String

The ability to use SAP Physical Inventory actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_sap_product_master_data_action ⇒ String

The ability to use SAP Product Master actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_service_now_action ⇒ String

The ability to use ServiceNow actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_share_point_action ⇒ String

The ability to use Microsoft SharePoint Online actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_share_point_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_shopify_action ⇒ String

The ability to use Shopify actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_slack_action ⇒ String

The ability to use Slack actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_smartsheet_action ⇒ String

The ability to use Smartsheet actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_snow_flake_action ⇒ String

The ability to use Snowflake Cortex Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_textract_action ⇒ String

The ability to use Textract actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_visier_agent_action ⇒ String

The ability to use Visier Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_web_crawler_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_whats_app_action ⇒ String

The ability to use WhatsApp actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_word_add_in_extension ⇒ String

The ability to use Amazon Quick through the Microsoft Word add-in.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_zapier_action ⇒ String

The ability to use Zapier Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_zendesk_action ⇒ String

The ability to use Zendesk actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_zoom_action ⇒ String

The ability to use Zoom actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#use_zoom_info_action ⇒ String

The ability to use ZoomInfo Agent actions.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#view_account_spice_capacity ⇒ String

The ability to view account SPICE capacity.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#visier_agent_action ⇒ String

The ability to perform actions using Visier Agent connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#web_crawler_knowledge_base ⇒ String

The permission state of a capability in a custom permissions profile. Valid values:

  • DENY – Amazon Quick denies this capability for users assigned to the profile.

  • ALLOW – Amazon Quick grants this capability to users assigned to the profile. This value is only relevant when governance is enabled for the capability's category. Without governance, the default effect is always ALLOW. In a governed category, this value overrides the category-level deny-by-default behavior for that capability only.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#whats_app_action ⇒ String

The ability to perform actions using WhatsApp connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#zapier_action ⇒ String

The ability to perform actions using Zapier Agent connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#zendesk_action ⇒ String

The ability to perform actions using Zendesk connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#zoom_action ⇒ String

The ability to perform actions using Zoom connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end

#zoom_info_action ⇒ String

The ability to perform actions using ZoomInfo Agent connectors.

Returns:

  • (String)


7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7276

class Capabilities < Struct.new(
  :export_to_csv,
  :export_to_excel,
  :export_to_pdf,
  :print_reports,
  :create_and_update_themes,
  :add_or_run_anomaly_detection_for_analyses,
  :share_analyses,
  :create_and_update_datasets,
  :share_datasets,
  :subscribe_dashboard_email_reports,
  :create_and_update_dashboard_email_reports,
  :share_dashboards,
  :create_and_update_threshold_alerts,
  :rename_shared_folders,
  :create_shared_folders,
  :create_and_update_data_sources,
  :share_data_sources,
  :view_account_spice_capacity,
  :create_spice_dataset,
  :export_to_pdf_in_scheduled_reports,
  :export_to_csv_in_scheduled_reports,
  :export_to_excel_in_scheduled_reports,
  :include_content_in_scheduled_reports_email,
  :dashboard,
  :analysis,
  :automate,
  :flow,
  :apps,
  :create_and_update_apps,
  :share_apps,
  :invoke_apps_ai_inference,
  :access_apps_native_data_store,
  :publish_without_approval,
  :use_bedrock_models,
  :perform_flow_ui_task,
  :approve_flow_share_requests,
  :use_agent_web_search,
  :knowledge_base,
  :create_and_update_knowledge_bases,
  :share_knowledge_bases,
  :share_point_knowledge_base,
  :create_and_update_share_point_knowledge_base,
  :share_share_point_knowledge_base,
  :use_share_point_knowledge_base,
  :google_drive_knowledge_base,
  :create_and_update_google_drive_knowledge_base,
  :share_google_drive_knowledge_base,
  :use_google_drive_knowledge_base,
  :web_crawler_knowledge_base,
  :create_and_update_web_crawler_knowledge_base,
  :share_web_crawler_knowledge_base,
  :use_web_crawler_knowledge_base,
  :s3_knowledge_base,
  :create_and_update_s3_knowledge_base,
  :share_s3_knowledge_base,
  :use_s3_knowledge_base,
  :confluence_knowledge_base,
  :create_and_update_confluence_knowledge_base,
  :share_confluence_knowledge_base,
  :use_confluence_knowledge_base,
  :one_drive_knowledge_base,
  :create_and_update_one_drive_knowledge_base,
  :share_one_drive_knowledge_base,
  :use_one_drive_knowledge_base,
  :q_business_knowledge_base,
  :create_and_update_q_business_knowledge_base,
  :share_q_business_knowledge_base,
  :use_q_business_knowledge_base,
  :bedrock_managed_knowledge_base,
  :create_and_update_bedrock_managed_knowledge_base,
  :share_bedrock_managed_knowledge_base,
  :use_bedrock_managed_knowledge_base,
  :box_knowledge_base,
  :create_and_update_box_knowledge_base,
  :share_box_knowledge_base,
  :use_box_knowledge_base,
  :idc_knowledge_base,
  :create_and_update_idc_knowledge_base,
  :share_idc_knowledge_base,
  :use_idc_knowledge_base,
  :action,
  :generic_http_action,
  :create_and_update_generic_http_action,
  :share_generic_http_action,
  :use_generic_http_action,
  :asana_action,
  :create_and_update_asana_action,
  :share_asana_action,
  :use_asana_action,
  :slack_action,
  :create_and_update_slack_action,
  :share_slack_action,
  :use_slack_action,
  :service_now_action,
  :create_and_update_service_now_action,
  :share_service_now_action,
  :use_service_now_action,
  :salesforce_action,
  :create_and_update_salesforce_action,
  :share_salesforce_action,
  :use_salesforce_action,
  :ms_exchange_action,
  :create_and_update_ms_exchange_action,
  :share_ms_exchange_action,
  :use_ms_exchange_action,
  :pager_duty_action,
  :create_and_update_pager_duty_action,
  :share_pager_duty_action,
  :use_pager_duty_action,
  :jira_action,
  :create_and_update_jira_action,
  :share_jira_action,
  :use_jira_action,
  :confluence_action,
  :create_and_update_confluence_action,
  :share_confluence_action,
  :use_confluence_action,
  :one_drive_action,
  :create_and_update_one_drive_action,
  :share_one_drive_action,
  :use_one_drive_action,
  :share_point_action,
  :create_and_update_share_point_action,
  :share_share_point_action,
  :use_share_point_action,
  :ms_teams_action,
  :create_and_update_ms_teams_action,
  :share_ms_teams_action,
  :use_ms_teams_action,
  :google_calendar_action,
  :create_and_update_google_calendar_action,
  :share_google_calendar_action,
  :use_google_calendar_action,
  :zendesk_action,
  :create_and_update_zendesk_action,
  :share_zendesk_action,
  :use_zendesk_action,
  :smartsheet_action,
  :create_and_update_smartsheet_action,
  :share_smartsheet_action,
  :use_smartsheet_action,
  :sap_business_partner_action,
  :create_and_update_sap_business_partner_action,
  :share_sap_business_partner_action,
  :use_sap_business_partner_action,
  :sap_product_master_data_action,
  :create_and_update_sap_product_master_data_action,
  :share_sap_product_master_data_action,
  :use_sap_product_master_data_action,
  :sap_physical_inventory_action,
  :create_and_update_sap_physical_inventory_action,
  :share_sap_physical_inventory_action,
  :use_sap_physical_inventory_action,
  :sap_bill_of_material_action,
  :create_and_update_sap_bill_of_material_action,
  :share_sap_bill_of_material_action,
  :use_sap_bill_of_material_action,
  :sap_material_stock_action,
  :create_and_update_sap_material_stock_action,
  :share_sap_material_stock_action,
  :use_sap_material_stock_action,
  :fact_set_action,
  :create_and_update_fact_set_action,
  :share_fact_set_action,
  :use_fact_set_action,
  :amazon_s_three_action,
  :create_and_update_amazon_s_three_action,
  :share_amazon_s_three_action,
  :use_amazon_s_three_action,
  :textract_action,
  :create_and_update_textract_action,
  :share_textract_action,
  :use_textract_action,
  :comprehend_action,
  :create_and_update_comprehend_action,
  :share_comprehend_action,
  :use_comprehend_action,
  :comprehend_medical_action,
  :create_and_update_comprehend_medical_action,
  :share_comprehend_medical_action,
  :use_comprehend_medical_action,
  :amazon_bedrock_ars_action,
  :create_and_update_amazon_bedrock_ars_action,
  :share_amazon_bedrock_ars_action,
  :use_amazon_bedrock_ars_action,
  :amazon_bedrock_fs_action,
  :create_and_update_amazon_bedrock_fs_action,
  :share_amazon_bedrock_fs_action,
  :use_amazon_bedrock_fs_action,
  :amazon_bedrock_krs_action,
  :create_and_update_amazon_bedrock_krs_action,
  :share_amazon_bedrock_krs_action,
  :use_amazon_bedrock_krs_action,
  :mcp_action,
  :create_and_update_mcp_action,
  :share_mcp_action,
  :use_mcp_action,
  :open_api_action,
  :create_and_update_open_api_action,
  :share_open_api_action,
  :use_open_api_action,
  :sand_pgmi_action,
  :create_and_update_sand_pgmi_action,
  :share_sand_pgmi_action,
  :use_sand_pgmi_action,
  :sand_p_global_energy_action,
  :create_and_update_sand_p_global_energy_action,
  :share_sand_p_global_energy_action,
  :use_sand_p_global_energy_action,
  :bamboo_hr_action,
  :create_and_update_bamboo_hr_action,
  :share_bamboo_hr_action,
  :use_bamboo_hr_action,
  :box_agent_action,
  :create_and_update_box_agent_action,
  :share_box_agent_action,
  :use_box_agent_action,
  :canva_agent_action,
  :create_and_update_canva_agent_action,
  :share_canva_agent_action,
  :use_canva_agent_action,
  :github_action,
  :create_and_update_github_action,
  :share_github_action,
  :use_github_action,
  :notion_action,
  :create_and_update_notion_action,
  :share_notion_action,
  :use_notion_action,
  :linear_action,
  :create_and_update_linear_action,
  :share_linear_action,
  :use_linear_action,
  :hugging_face_action,
  :create_and_update_hugging_face_action,
  :share_hugging_face_action,
  :use_hugging_face_action,
  :monday_action,
  :create_and_update_monday_action,
  :share_monday_action,
  :use_monday_action,
  :hubspot_action,
  :create_and_update_hubspot_action,
  :share_hubspot_action,
  :use_hubspot_action,
  :intercom_action,
  :create_and_update_intercom_action,
  :share_intercom_action,
  :use_intercom_action,
  :new_relic_action,
  :create_and_update_new_relic_action,
  :share_new_relic_action,
  :use_new_relic_action,
  :pager_duty_agent_action,
  :create_and_update_pager_duty_agent_action,
  :share_pager_duty_agent_action,
  :use_pager_duty_agent_action,
  :visier_agent_action,
  :create_and_update_visier_agent_action,
  :share_visier_agent_action,
  :use_visier_agent_action,
  :zoom_action,
  :create_and_update_zoom_action,
  :share_zoom_action,
  :use_zoom_action,
  :snow_flake_action,
  :create_and_update_snow_flake_action,
  :share_snow_flake_action,
  :use_snow_flake_action,
  :zapier_action,
  :create_and_update_zapier_action,
  :share_zapier_action,
  :use_zapier_action,
  :airtable_action,
  :create_and_update_airtable_action,
  :share_airtable_action,
  :use_airtable_action,
  :dropbox_action,
  :create_and_update_dropbox_action,
  :share_dropbox_action,
  :use_dropbox_action,
  :gmail_action,
  :create_and_update_gmail_action,
  :share_gmail_action,
  :use_gmail_action,
  :google_analytics_action,
  :create_and_update_google_analytics_action,
  :share_google_analytics_action,
  :use_google_analytics_action,
  :google_docs_action,
  :create_and_update_google_docs_action,
  :share_google_docs_action,
  :use_google_docs_action,
  :google_drive_action,
  :create_and_update_google_drive_action,
  :share_google_drive_action,
  :use_google_drive_action,
  :google_meet_action,
  :create_and_update_google_meet_action,
  :share_google_meet_action,
  :use_google_meet_action,
  :google_sheets_action,
  :create_and_update_google_sheets_action,
  :share_google_sheets_action,
  :use_google_sheets_action,
  :google_slides_action,
  :create_and_update_google_slides_action,
  :share_google_slides_action,
  :use_google_slides_action,
  :quick_books_action,
  :create_and_update_quick_books_action,
  :share_quick_books_action,
  :use_quick_books_action,
  :figma_action,
  :create_and_update_figma_action,
  :share_figma_action,
  :use_figma_action,
  :whats_app_action,
  :create_and_update_whats_app_action,
  :share_whats_app_action,
  :use_whats_app_action,
  :google_chat_action,
  :create_and_update_google_chat_action,
  :share_google_chat_action,
  :use_google_chat_action,
  :one_note_action,
  :create_and_update_one_note_action,
  :share_one_note_action,
  :use_one_note_action,
  :shopify_action,
  :create_and_update_shopify_action,
  :share_shopify_action,
  :use_shopify_action,
  :adobe_action,
  :create_and_update_adobe_action,
  :share_adobe_action,
  :use_adobe_action,
  :cisco_webex_vidcast_action,
  :create_and_update_cisco_webex_vidcast_action,
  :share_cisco_webex_vidcast_action,
  :use_cisco_webex_vidcast_action,
  :cisco_webex_meetings_action,
  :create_and_update_cisco_webex_meetings_action,
  :share_cisco_webex_meetings_action,
  :use_cisco_webex_meetings_action,
  :dun_and_bradstreet_action,
  :create_and_update_dun_and_bradstreet_action,
  :share_dun_and_bradstreet_action,
  :use_dun_and_bradstreet_action,
  :hg_insights_action,
  :create_and_update_hg_insights_action,
  :share_hg_insights_action,
  :use_hg_insights_action,
  :zoom_info_action,
  :create_and_update_zoom_info_action,
  :share_zoom_info_action,
  :use_zoom_info_action,
  :moodys_action,
  :create_and_update_moodys_action,
  :share_moodys_action,
  :use_moodys_action,
  :bee_action,
  :create_and_update_bee_action,
  :share_bee_action,
  :use_bee_action,
  :topic,
  :edit_visual_with_q,
  :build_calculated_field_with_q,
  :create_dashboard_executive_summary_with_q,
  :space,
  :create_spaces,
  :share_spaces,
  :chat_agent,
  :create_chat_agents,
  :share_chat_agents,
  :research,
  :self_upgrade_user_role,
  :extension,
  :use_browser_extension,
  :use_word_add_in_extension,
  :use_outlook_add_in_extension,
  :use_excel_add_in_extension,
  :use_powerpoint_add_in_extension,
  :manage_shared_folders,
  :generate_analyses,
  :story,
  :scenario,
  :trigger,
  :schedule_trigger,
  :inbound_email_trigger,
  :quick_event_trigger)
  SENSITIVE = []
  include Aws::Structure
end