aws-sdk-quicksight 1.149.0 → 1.151.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-quicksight/client.rb +64 -5
- data/lib/aws-sdk-quicksight/client_api.rb +24 -0
- data/lib/aws-sdk-quicksight/types.rb +114 -9
- data/lib/aws-sdk-quicksight.rb +1 -1
- data/sig/client.rbs +80 -16
- data/sig/types.rbs +29 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f32d1c71f049b6e7c870a0c08cf3abb543ec0c24f90e8a6a428b6580f6596592
|
4
|
+
data.tar.gz: 04b6a9538e515429228ac9cf57c7417a749d2bab22be08ad4b2d4e8f2e65efd5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f20adaf7f92f6449bc6c747739e3cac3cd9cf820c01161b3612b17f9f51b2945beb59da19da85307064cfbb4e140cb98f549faa51473e552e48988ff5bb4a884
|
7
|
+
data.tar.gz: 96c05376ce033173228fd8b74d326c425b9ef1953e7b0163becdef37da7809d07ba682109d938cdaf1181bb029545d0c4a39366a17b9b485f41e1be48786db61
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.151.0 (2025-07-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Introduced custom instructions for topics.
|
8
|
+
|
9
|
+
1.150.0 (2025-06-30)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Introduced custom permission capabilities for reporting content. Added menu option in exploration to preserve configuration data when textbox menu option is used. Added support for Athena trusted identity propagation.
|
13
|
+
|
4
14
|
1.149.0 (2025-06-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.151.0
|
@@ -2038,6 +2038,8 @@ module Aws::QuickSight
|
|
2038
2038
|
# capabilities: {
|
2039
2039
|
# export_to_csv: "DENY", # accepts DENY
|
2040
2040
|
# export_to_excel: "DENY", # accepts DENY
|
2041
|
+
# export_to_pdf: "DENY", # accepts DENY
|
2042
|
+
# print_reports: "DENY", # accepts DENY
|
2041
2043
|
# create_and_update_themes: "DENY", # accepts DENY
|
2042
2044
|
# add_or_run_anomaly_detection_for_analyses: "DENY", # accepts DENY
|
2043
2045
|
# share_analyses: "DENY", # accepts DENY
|
@@ -2053,6 +2055,10 @@ module Aws::QuickSight
|
|
2053
2055
|
# share_data_sources: "DENY", # accepts DENY
|
2054
2056
|
# view_account_spice_capacity: "DENY", # accepts DENY
|
2055
2057
|
# create_spice_dataset: "DENY", # accepts DENY
|
2058
|
+
# export_to_pdf_in_scheduled_reports: "DENY", # accepts DENY
|
2059
|
+
# export_to_csv_in_scheduled_reports: "DENY", # accepts DENY
|
2060
|
+
# export_to_excel_in_scheduled_reports: "DENY", # accepts DENY
|
2061
|
+
# include_content_in_scheduled_reports_email: "DENY", # accepts DENY
|
2056
2062
|
# },
|
2057
2063
|
# tags: [
|
2058
2064
|
# {
|
@@ -2611,6 +2617,9 @@ module Aws::QuickSight
|
|
2611
2617
|
# athena_parameters: {
|
2612
2618
|
# work_group: "WorkGroup",
|
2613
2619
|
# role_arn: "RoleArn",
|
2620
|
+
# identity_center_configuration: {
|
2621
|
+
# enable_identity_propagation: false,
|
2622
|
+
# },
|
2614
2623
|
# },
|
2615
2624
|
# aurora_parameters: {
|
2616
2625
|
# host: "Host", # required
|
@@ -2766,6 +2775,9 @@ module Aws::QuickSight
|
|
2766
2775
|
# athena_parameters: {
|
2767
2776
|
# work_group: "WorkGroup",
|
2768
2777
|
# role_arn: "RoleArn",
|
2778
|
+
# identity_center_configuration: {
|
2779
|
+
# enable_identity_propagation: false,
|
2780
|
+
# },
|
2769
2781
|
# },
|
2770
2782
|
# aurora_parameters: {
|
2771
2783
|
# host: "Host", # required
|
@@ -3856,6 +3868,9 @@ module Aws::QuickSight
|
|
3856
3868
|
# @option params [Array<String>] :folder_arns
|
3857
3869
|
# The Folder ARN of the folder that you want the topic to reside in.
|
3858
3870
|
#
|
3871
|
+
# @option params [Types::CustomInstructions] :custom_instructions
|
3872
|
+
# Custom instructions for the topic.
|
3873
|
+
#
|
3859
3874
|
# @return [Types::CreateTopicResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3860
3875
|
#
|
3861
3876
|
# * {Types::CreateTopicResponse#arn #arn} => String
|
@@ -4099,6 +4114,9 @@ module Aws::QuickSight
|
|
4099
4114
|
# },
|
4100
4115
|
# ],
|
4101
4116
|
# folder_arns: ["Arn"],
|
4117
|
+
# custom_instructions: {
|
4118
|
+
# custom_instructions_string: "CustomInstructionsString", # required
|
4119
|
+
# },
|
4102
4120
|
# })
|
4103
4121
|
#
|
4104
4122
|
# @example Response structure
|
@@ -4929,7 +4947,7 @@ module Aws::QuickSight
|
|
4929
4947
|
#
|
4930
4948
|
# resp = client.delete_identity_propagation_config({
|
4931
4949
|
# aws_account_id: "AwsAccountId", # required
|
4932
|
-
# service: "REDSHIFT", # required, accepts REDSHIFT, QBUSINESS
|
4950
|
+
# service: "REDSHIFT", # required, accepts REDSHIFT, QBUSINESS, ATHENA
|
4933
4951
|
# })
|
4934
4952
|
#
|
4935
4953
|
# @example Response structure
|
@@ -6121,6 +6139,7 @@ module Aws::QuickSight
|
|
6121
6139
|
# resp.override_parameters.data_sources[0].data_source_parameters.amazon_elasticsearch_parameters.domain #=> String
|
6122
6140
|
# resp.override_parameters.data_sources[0].data_source_parameters.athena_parameters.work_group #=> String
|
6123
6141
|
# resp.override_parameters.data_sources[0].data_source_parameters.athena_parameters.role_arn #=> String
|
6142
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.athena_parameters.identity_center_configuration.enable_identity_propagation #=> Boolean
|
6124
6143
|
# resp.override_parameters.data_sources[0].data_source_parameters.aurora_parameters.host #=> String
|
6125
6144
|
# resp.override_parameters.data_sources[0].data_source_parameters.aurora_parameters.port #=> Integer
|
6126
6145
|
# resp.override_parameters.data_sources[0].data_source_parameters.aurora_parameters.database #=> String
|
@@ -6578,6 +6597,8 @@ module Aws::QuickSight
|
|
6578
6597
|
# resp.custom_permissions.custom_permissions_name #=> String
|
6579
6598
|
# resp.custom_permissions.capabilities.export_to_csv #=> String, one of "DENY"
|
6580
6599
|
# resp.custom_permissions.capabilities.export_to_excel #=> String, one of "DENY"
|
6600
|
+
# resp.custom_permissions.capabilities.export_to_pdf #=> String, one of "DENY"
|
6601
|
+
# resp.custom_permissions.capabilities.print_reports #=> String, one of "DENY"
|
6581
6602
|
# resp.custom_permissions.capabilities.create_and_update_themes #=> String, one of "DENY"
|
6582
6603
|
# resp.custom_permissions.capabilities.add_or_run_anomaly_detection_for_analyses #=> String, one of "DENY"
|
6583
6604
|
# resp.custom_permissions.capabilities.share_analyses #=> String, one of "DENY"
|
@@ -6593,6 +6614,10 @@ module Aws::QuickSight
|
|
6593
6614
|
# resp.custom_permissions.capabilities.share_data_sources #=> String, one of "DENY"
|
6594
6615
|
# resp.custom_permissions.capabilities.view_account_spice_capacity #=> String, one of "DENY"
|
6595
6616
|
# resp.custom_permissions.capabilities.create_spice_dataset #=> String, one of "DENY"
|
6617
|
+
# resp.custom_permissions.capabilities.export_to_pdf_in_scheduled_reports #=> String, one of "DENY"
|
6618
|
+
# resp.custom_permissions.capabilities.export_to_csv_in_scheduled_reports #=> String, one of "DENY"
|
6619
|
+
# resp.custom_permissions.capabilities.export_to_excel_in_scheduled_reports #=> String, one of "DENY"
|
6620
|
+
# resp.custom_permissions.capabilities.include_content_in_scheduled_reports_email #=> String, one of "DENY"
|
6596
6621
|
# resp.request_id #=> String
|
6597
6622
|
#
|
6598
6623
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeCustomPermissions AWS API Documentation
|
@@ -7305,6 +7330,7 @@ module Aws::QuickSight
|
|
7305
7330
|
# resp.data_source.data_source_parameters.amazon_elasticsearch_parameters.domain #=> String
|
7306
7331
|
# resp.data_source.data_source_parameters.athena_parameters.work_group #=> String
|
7307
7332
|
# resp.data_source.data_source_parameters.athena_parameters.role_arn #=> String
|
7333
|
+
# resp.data_source.data_source_parameters.athena_parameters.identity_center_configuration.enable_identity_propagation #=> Boolean
|
7308
7334
|
# resp.data_source.data_source_parameters.aurora_parameters.host #=> String
|
7309
7335
|
# resp.data_source.data_source_parameters.aurora_parameters.port #=> Integer
|
7310
7336
|
# resp.data_source.data_source_parameters.aurora_parameters.database #=> String
|
@@ -7389,6 +7415,7 @@ module Aws::QuickSight
|
|
7389
7415
|
# resp.data_source.alternate_data_source_parameters[0].amazon_elasticsearch_parameters.domain #=> String
|
7390
7416
|
# resp.data_source.alternate_data_source_parameters[0].athena_parameters.work_group #=> String
|
7391
7417
|
# resp.data_source.alternate_data_source_parameters[0].athena_parameters.role_arn #=> String
|
7418
|
+
# resp.data_source.alternate_data_source_parameters[0].athena_parameters.identity_center_configuration.enable_identity_propagation #=> Boolean
|
7392
7419
|
# resp.data_source.alternate_data_source_parameters[0].aurora_parameters.host #=> String
|
7393
7420
|
# resp.data_source.alternate_data_source_parameters[0].aurora_parameters.port #=> Integer
|
7394
7421
|
# resp.data_source.alternate_data_source_parameters[0].aurora_parameters.database #=> String
|
@@ -8679,6 +8706,7 @@ module Aws::QuickSight
|
|
8679
8706
|
# * {Types::DescribeTopicResponse#topic #topic} => Types::TopicDetails
|
8680
8707
|
# * {Types::DescribeTopicResponse#request_id #request_id} => String
|
8681
8708
|
# * {Types::DescribeTopicResponse#status #status} => Integer
|
8709
|
+
# * {Types::DescribeTopicResponse#custom_instructions #custom_instructions} => Types::CustomInstructions
|
8682
8710
|
#
|
8683
8711
|
# @example Request syntax with placeholder values
|
8684
8712
|
#
|
@@ -8849,6 +8877,7 @@ module Aws::QuickSight
|
|
8849
8877
|
# resp.topic.config_options.q_business_insights_enabled #=> Boolean
|
8850
8878
|
# resp.request_id #=> String
|
8851
8879
|
# resp.status #=> Integer
|
8880
|
+
# resp.custom_instructions.custom_instructions_string #=> String
|
8852
8881
|
#
|
8853
8882
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeTopic AWS API Documentation
|
8854
8883
|
#
|
@@ -10059,6 +10088,8 @@ module Aws::QuickSight
|
|
10059
10088
|
# resp.custom_permissions_list[0].custom_permissions_name #=> String
|
10060
10089
|
# resp.custom_permissions_list[0].capabilities.export_to_csv #=> String, one of "DENY"
|
10061
10090
|
# resp.custom_permissions_list[0].capabilities.export_to_excel #=> String, one of "DENY"
|
10091
|
+
# resp.custom_permissions_list[0].capabilities.export_to_pdf #=> String, one of "DENY"
|
10092
|
+
# resp.custom_permissions_list[0].capabilities.print_reports #=> String, one of "DENY"
|
10062
10093
|
# resp.custom_permissions_list[0].capabilities.create_and_update_themes #=> String, one of "DENY"
|
10063
10094
|
# resp.custom_permissions_list[0].capabilities.add_or_run_anomaly_detection_for_analyses #=> String, one of "DENY"
|
10064
10095
|
# resp.custom_permissions_list[0].capabilities.share_analyses #=> String, one of "DENY"
|
@@ -10074,6 +10105,10 @@ module Aws::QuickSight
|
|
10074
10105
|
# resp.custom_permissions_list[0].capabilities.share_data_sources #=> String, one of "DENY"
|
10075
10106
|
# resp.custom_permissions_list[0].capabilities.view_account_spice_capacity #=> String, one of "DENY"
|
10076
10107
|
# resp.custom_permissions_list[0].capabilities.create_spice_dataset #=> String, one of "DENY"
|
10108
|
+
# resp.custom_permissions_list[0].capabilities.export_to_pdf_in_scheduled_reports #=> String, one of "DENY"
|
10109
|
+
# resp.custom_permissions_list[0].capabilities.export_to_csv_in_scheduled_reports #=> String, one of "DENY"
|
10110
|
+
# resp.custom_permissions_list[0].capabilities.export_to_excel_in_scheduled_reports #=> String, one of "DENY"
|
10111
|
+
# resp.custom_permissions_list[0].capabilities.include_content_in_scheduled_reports_email #=> String, one of "DENY"
|
10077
10112
|
# resp.next_token #=> String
|
10078
10113
|
# resp.request_id #=> String
|
10079
10114
|
#
|
@@ -10302,6 +10337,7 @@ module Aws::QuickSight
|
|
10302
10337
|
# resp.data_sources[0].data_source_parameters.amazon_elasticsearch_parameters.domain #=> String
|
10303
10338
|
# resp.data_sources[0].data_source_parameters.athena_parameters.work_group #=> String
|
10304
10339
|
# resp.data_sources[0].data_source_parameters.athena_parameters.role_arn #=> String
|
10340
|
+
# resp.data_sources[0].data_source_parameters.athena_parameters.identity_center_configuration.enable_identity_propagation #=> Boolean
|
10305
10341
|
# resp.data_sources[0].data_source_parameters.aurora_parameters.host #=> String
|
10306
10342
|
# resp.data_sources[0].data_source_parameters.aurora_parameters.port #=> Integer
|
10307
10343
|
# resp.data_sources[0].data_source_parameters.aurora_parameters.database #=> String
|
@@ -10386,6 +10422,7 @@ module Aws::QuickSight
|
|
10386
10422
|
# resp.data_sources[0].alternate_data_source_parameters[0].amazon_elasticsearch_parameters.domain #=> String
|
10387
10423
|
# resp.data_sources[0].alternate_data_source_parameters[0].athena_parameters.work_group #=> String
|
10388
10424
|
# resp.data_sources[0].alternate_data_source_parameters[0].athena_parameters.role_arn #=> String
|
10425
|
+
# resp.data_sources[0].alternate_data_source_parameters[0].athena_parameters.identity_center_configuration.enable_identity_propagation #=> Boolean
|
10389
10426
|
# resp.data_sources[0].alternate_data_source_parameters[0].aurora_parameters.host #=> String
|
10390
10427
|
# resp.data_sources[0].alternate_data_source_parameters[0].aurora_parameters.port #=> Integer
|
10391
10428
|
# resp.data_sources[0].alternate_data_source_parameters[0].aurora_parameters.database #=> String
|
@@ -10898,7 +10935,7 @@ module Aws::QuickSight
|
|
10898
10935
|
# @example Response structure
|
10899
10936
|
#
|
10900
10937
|
# resp.services #=> Array
|
10901
|
-
# resp.services[0].service #=> String, one of "REDSHIFT", "QBUSINESS"
|
10938
|
+
# resp.services[0].service #=> String, one of "REDSHIFT", "QBUSINESS", "ATHENA"
|
10902
10939
|
# resp.services[0].authorized_targets #=> Array
|
10903
10940
|
# resp.services[0].authorized_targets[0] #=> String
|
10904
10941
|
# resp.next_token #=> String
|
@@ -10914,7 +10951,8 @@ module Aws::QuickSight
|
|
10914
10951
|
req.send_request(options)
|
10915
10952
|
end
|
10916
10953
|
|
10917
|
-
# Lists the history of SPICE ingestions for a dataset.
|
10954
|
+
# Lists the history of SPICE ingestions for a dataset. Limited to 5 TPS
|
10955
|
+
# per user and 25 TPS per account.
|
10918
10956
|
#
|
10919
10957
|
# @option params [required, String] :data_set_id
|
10920
10958
|
# The ID of the dataset used in the ingestion.
|
@@ -13421,6 +13459,9 @@ module Aws::QuickSight
|
|
13421
13459
|
# athena_parameters: {
|
13422
13460
|
# work_group: "WorkGroup",
|
13423
13461
|
# role_arn: "RoleArn",
|
13462
|
+
# identity_center_configuration: {
|
13463
|
+
# enable_identity_propagation: false,
|
13464
|
+
# },
|
13424
13465
|
# },
|
13425
13466
|
# aurora_parameters: {
|
13426
13467
|
# host: "Host", # required
|
@@ -14709,6 +14750,8 @@ module Aws::QuickSight
|
|
14709
14750
|
# capabilities: {
|
14710
14751
|
# export_to_csv: "DENY", # accepts DENY
|
14711
14752
|
# export_to_excel: "DENY", # accepts DENY
|
14753
|
+
# export_to_pdf: "DENY", # accepts DENY
|
14754
|
+
# print_reports: "DENY", # accepts DENY
|
14712
14755
|
# create_and_update_themes: "DENY", # accepts DENY
|
14713
14756
|
# add_or_run_anomaly_detection_for_analyses: "DENY", # accepts DENY
|
14714
14757
|
# share_analyses: "DENY", # accepts DENY
|
@@ -14724,6 +14767,10 @@ module Aws::QuickSight
|
|
14724
14767
|
# share_data_sources: "DENY", # accepts DENY
|
14725
14768
|
# view_account_spice_capacity: "DENY", # accepts DENY
|
14726
14769
|
# create_spice_dataset: "DENY", # accepts DENY
|
14770
|
+
# export_to_pdf_in_scheduled_reports: "DENY", # accepts DENY
|
14771
|
+
# export_to_csv_in_scheduled_reports: "DENY", # accepts DENY
|
14772
|
+
# export_to_excel_in_scheduled_reports: "DENY", # accepts DENY
|
14773
|
+
# include_content_in_scheduled_reports_email: "DENY", # accepts DENY
|
14727
14774
|
# },
|
14728
14775
|
# })
|
14729
14776
|
#
|
@@ -15470,6 +15517,9 @@ module Aws::QuickSight
|
|
15470
15517
|
# athena_parameters: {
|
15471
15518
|
# work_group: "WorkGroup",
|
15472
15519
|
# role_arn: "RoleArn",
|
15520
|
+
# identity_center_configuration: {
|
15521
|
+
# enable_identity_propagation: false,
|
15522
|
+
# },
|
15473
15523
|
# },
|
15474
15524
|
# aurora_parameters: {
|
15475
15525
|
# host: "Host", # required
|
@@ -15625,6 +15675,9 @@ module Aws::QuickSight
|
|
15625
15675
|
# athena_parameters: {
|
15626
15676
|
# work_group: "WorkGroup",
|
15627
15677
|
# role_arn: "RoleArn",
|
15678
|
+
# identity_center_configuration: {
|
15679
|
+
# enable_identity_propagation: false,
|
15680
|
+
# },
|
15628
15681
|
# },
|
15629
15682
|
# aurora_parameters: {
|
15630
15683
|
# host: "Host", # required
|
@@ -16162,7 +16215,7 @@ module Aws::QuickSight
|
|
16162
16215
|
#
|
16163
16216
|
# resp = client.update_identity_propagation_config({
|
16164
16217
|
# aws_account_id: "AwsAccountId", # required
|
16165
|
-
# service: "REDSHIFT", # required, accepts REDSHIFT, QBUSINESS
|
16218
|
+
# service: "REDSHIFT", # required, accepts REDSHIFT, QBUSINESS, ATHENA
|
16166
16219
|
# authorized_targets: ["String"],
|
16167
16220
|
# })
|
16168
16221
|
#
|
@@ -17018,6 +17071,9 @@ module Aws::QuickSight
|
|
17018
17071
|
# @option params [required, Types::TopicDetails] :topic
|
17019
17072
|
# The definition of the topic that you want to update.
|
17020
17073
|
#
|
17074
|
+
# @option params [Types::CustomInstructions] :custom_instructions
|
17075
|
+
# Custom instructions for the topic.
|
17076
|
+
#
|
17021
17077
|
# @return [Types::UpdateTopicResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
17022
17078
|
#
|
17023
17079
|
# * {Types::UpdateTopicResponse#topic_id #topic_id} => String
|
@@ -17254,6 +17310,9 @@ module Aws::QuickSight
|
|
17254
17310
|
# q_business_insights_enabled: false,
|
17255
17311
|
# },
|
17256
17312
|
# },
|
17313
|
+
# custom_instructions: {
|
17314
|
+
# custom_instructions_string: "CustomInstructionsString", # required
|
17315
|
+
# },
|
17257
17316
|
# })
|
17258
17317
|
#
|
17259
17318
|
# @example Response structure
|
@@ -17676,7 +17735,7 @@ module Aws::QuickSight
|
|
17676
17735
|
tracer: tracer
|
17677
17736
|
)
|
17678
17737
|
context[:gem_name] = 'aws-sdk-quicksight'
|
17679
|
-
context[:gem_version] = '1.
|
17738
|
+
context[:gem_version] = '1.151.0'
|
17680
17739
|
Seahorse::Client::Request.new(handlers, context)
|
17681
17740
|
end
|
17682
17741
|
|
@@ -454,6 +454,8 @@ module Aws::QuickSight
|
|
454
454
|
CustomContentVisual = Shapes::StructureShape.new(name: 'CustomContentVisual')
|
455
455
|
CustomFilterConfiguration = Shapes::StructureShape.new(name: 'CustomFilterConfiguration')
|
456
456
|
CustomFilterListConfiguration = Shapes::StructureShape.new(name: 'CustomFilterListConfiguration')
|
457
|
+
CustomInstructions = Shapes::StructureShape.new(name: 'CustomInstructions')
|
458
|
+
CustomInstructionsString = Shapes::StringShape.new(name: 'CustomInstructionsString')
|
457
459
|
CustomLabel = Shapes::StringShape.new(name: 'CustomLabel')
|
458
460
|
CustomNarrativeOptions = Shapes::StructureShape.new(name: 'CustomNarrativeOptions')
|
459
461
|
CustomParameterValues = Shapes::StructureShape.new(name: 'CustomParameterValues')
|
@@ -1847,6 +1849,8 @@ module Aws::QuickSight
|
|
1847
1849
|
TeradataParameters = Shapes::StructureShape.new(name: 'TeradataParameters')
|
1848
1850
|
TextAreaControlDelimiter = Shapes::StringShape.new(name: 'TextAreaControlDelimiter')
|
1849
1851
|
TextAreaControlDisplayOptions = Shapes::StructureShape.new(name: 'TextAreaControlDisplayOptions')
|
1852
|
+
TextBoxInteractionOptions = Shapes::StructureShape.new(name: 'TextBoxInteractionOptions')
|
1853
|
+
TextBoxMenuOption = Shapes::StructureShape.new(name: 'TextBoxMenuOption')
|
1850
1854
|
TextConditionalFormat = Shapes::StructureShape.new(name: 'TextConditionalFormat')
|
1851
1855
|
TextControlPlaceholderOptions = Shapes::StructureShape.new(name: 'TextControlPlaceholderOptions')
|
1852
1856
|
TextFieldControlDisplayOptions = Shapes::StructureShape.new(name: 'TextFieldControlDisplayOptions')
|
@@ -2703,6 +2707,7 @@ module Aws::QuickSight
|
|
2703
2707
|
|
2704
2708
|
AthenaParameters.add_member(:work_group, Shapes::ShapeRef.new(shape: WorkGroup, location_name: "WorkGroup"))
|
2705
2709
|
AthenaParameters.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleArn"))
|
2710
|
+
AthenaParameters.add_member(:identity_center_configuration, Shapes::ShapeRef.new(shape: IdentityCenterConfiguration, location_name: "IdentityCenterConfiguration"))
|
2706
2711
|
AthenaParameters.struct_class = Types::AthenaParameters
|
2707
2712
|
|
2708
2713
|
AttributeAggregationFunction.add_member(:simple_attribute_aggregation, Shapes::ShapeRef.new(shape: SimpleAttributeAggregationFunction, location_name: "SimpleAttributeAggregation"))
|
@@ -3027,6 +3032,8 @@ module Aws::QuickSight
|
|
3027
3032
|
|
3028
3033
|
Capabilities.add_member(:export_to_csv, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "ExportToCsv"))
|
3029
3034
|
Capabilities.add_member(:export_to_excel, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "ExportToExcel"))
|
3035
|
+
Capabilities.add_member(:export_to_pdf, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "ExportToPdf"))
|
3036
|
+
Capabilities.add_member(:print_reports, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "PrintReports"))
|
3030
3037
|
Capabilities.add_member(:create_and_update_themes, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "CreateAndUpdateThemes"))
|
3031
3038
|
Capabilities.add_member(:add_or_run_anomaly_detection_for_analyses, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "AddOrRunAnomalyDetectionForAnalyses"))
|
3032
3039
|
Capabilities.add_member(:share_analyses, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "ShareAnalyses"))
|
@@ -3042,6 +3049,10 @@ module Aws::QuickSight
|
|
3042
3049
|
Capabilities.add_member(:share_data_sources, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "ShareDataSources"))
|
3043
3050
|
Capabilities.add_member(:view_account_spice_capacity, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "ViewAccountSPICECapacity"))
|
3044
3051
|
Capabilities.add_member(:create_spice_dataset, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "CreateSPICEDataset"))
|
3052
|
+
Capabilities.add_member(:export_to_pdf_in_scheduled_reports, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "ExportToPdfInScheduledReports"))
|
3053
|
+
Capabilities.add_member(:export_to_csv_in_scheduled_reports, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "ExportToCsvInScheduledReports"))
|
3054
|
+
Capabilities.add_member(:export_to_excel_in_scheduled_reports, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "ExportToExcelInScheduledReports"))
|
3055
|
+
Capabilities.add_member(:include_content_in_scheduled_reports_email, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "IncludeContentInScheduledReportsEmail"))
|
3045
3056
|
Capabilities.struct_class = Types::Capabilities
|
3046
3057
|
|
3047
3058
|
CascadingControlConfiguration.add_member(:source_controls, Shapes::ShapeRef.new(shape: CascadingControlSourceList, location_name: "SourceControls"))
|
@@ -3689,6 +3700,7 @@ module Aws::QuickSight
|
|
3689
3700
|
CreateTopicRequest.add_member(:topic, Shapes::ShapeRef.new(shape: TopicDetails, required: true, location_name: "Topic"))
|
3690
3701
|
CreateTopicRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
3691
3702
|
CreateTopicRequest.add_member(:folder_arns, Shapes::ShapeRef.new(shape: FolderArnList, location_name: "FolderArns"))
|
3703
|
+
CreateTopicRequest.add_member(:custom_instructions, Shapes::ShapeRef.new(shape: CustomInstructions, location_name: "CustomInstructions"))
|
3692
3704
|
CreateTopicRequest.struct_class = Types::CreateTopicRequest
|
3693
3705
|
|
3694
3706
|
CreateTopicResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
|
@@ -3792,6 +3804,9 @@ module Aws::QuickSight
|
|
3792
3804
|
CustomFilterListConfiguration.add_member(:null_option, Shapes::ShapeRef.new(shape: FilterNullOption, required: true, location_name: "NullOption"))
|
3793
3805
|
CustomFilterListConfiguration.struct_class = Types::CustomFilterListConfiguration
|
3794
3806
|
|
3807
|
+
CustomInstructions.add_member(:custom_instructions_string, Shapes::ShapeRef.new(shape: CustomInstructionsString, required: true, location_name: "CustomInstructionsString"))
|
3808
|
+
CustomInstructions.struct_class = Types::CustomInstructions
|
3809
|
+
|
3795
3810
|
CustomNarrativeOptions.add_member(:narrative, Shapes::ShapeRef.new(shape: NarrativeString, required: true, location_name: "Narrative"))
|
3796
3811
|
CustomNarrativeOptions.struct_class = Types::CustomNarrativeOptions
|
3797
3812
|
|
@@ -5223,6 +5238,7 @@ module Aws::QuickSight
|
|
5223
5238
|
DescribeTopicResponse.add_member(:topic, Shapes::ShapeRef.new(shape: TopicDetails, location_name: "Topic"))
|
5224
5239
|
DescribeTopicResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
5225
5240
|
DescribeTopicResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location: "statusCode", location_name: "Status"))
|
5241
|
+
DescribeTopicResponse.add_member(:custom_instructions, Shapes::ShapeRef.new(shape: CustomInstructions, location_name: "CustomInstructions"))
|
5226
5242
|
DescribeTopicResponse.struct_class = Types::DescribeTopicResponse
|
5227
5243
|
|
5228
5244
|
DescribeUserRequest.add_member(:user_name, Shapes::ShapeRef.new(shape: UserName, required: true, location: "uri", location_name: "UserName"))
|
@@ -8381,6 +8397,7 @@ module Aws::QuickSight
|
|
8381
8397
|
|
8382
8398
|
SheetTextBox.add_member(:sheet_text_box_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location_name: "SheetTextBoxId"))
|
8383
8399
|
SheetTextBox.add_member(:content, Shapes::ShapeRef.new(shape: SheetTextBoxContent, location_name: "Content"))
|
8400
|
+
SheetTextBox.add_member(:interactions, Shapes::ShapeRef.new(shape: TextBoxInteractionOptions, location_name: "Interactions"))
|
8384
8401
|
SheetTextBox.struct_class = Types::SheetTextBox
|
8385
8402
|
|
8386
8403
|
SheetTextBoxList.member = Shapes::ShapeRef.new(shape: SheetTextBox)
|
@@ -8936,6 +8953,12 @@ module Aws::QuickSight
|
|
8936
8953
|
TextAreaControlDisplayOptions.add_member(:info_icon_label_options, Shapes::ShapeRef.new(shape: SheetControlInfoIconLabelOptions, location_name: "InfoIconLabelOptions"))
|
8937
8954
|
TextAreaControlDisplayOptions.struct_class = Types::TextAreaControlDisplayOptions
|
8938
8955
|
|
8956
|
+
TextBoxInteractionOptions.add_member(:text_box_menu_option, Shapes::ShapeRef.new(shape: TextBoxMenuOption, location_name: "TextBoxMenuOption"))
|
8957
|
+
TextBoxInteractionOptions.struct_class = Types::TextBoxInteractionOptions
|
8958
|
+
|
8959
|
+
TextBoxMenuOption.add_member(:availability_status, Shapes::ShapeRef.new(shape: DashboardBehavior, location_name: "AvailabilityStatus"))
|
8960
|
+
TextBoxMenuOption.struct_class = Types::TextBoxMenuOption
|
8961
|
+
|
8939
8962
|
TextConditionalFormat.add_member(:background_color, Shapes::ShapeRef.new(shape: ConditionalFormattingColor, location_name: "BackgroundColor"))
|
8940
8963
|
TextConditionalFormat.add_member(:text_color, Shapes::ShapeRef.new(shape: ConditionalFormattingColor, location_name: "TextColor"))
|
8941
8964
|
TextConditionalFormat.add_member(:icon, Shapes::ShapeRef.new(shape: ConditionalFormattingIcon, location_name: "Icon"))
|
@@ -9994,6 +10017,7 @@ module Aws::QuickSight
|
|
9994
10017
|
UpdateTopicRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
|
9995
10018
|
UpdateTopicRequest.add_member(:topic_id, Shapes::ShapeRef.new(shape: TopicId, required: true, location: "uri", location_name: "TopicId"))
|
9996
10019
|
UpdateTopicRequest.add_member(:topic, Shapes::ShapeRef.new(shape: TopicDetails, required: true, location_name: "Topic"))
|
10020
|
+
UpdateTopicRequest.add_member(:custom_instructions, Shapes::ShapeRef.new(shape: CustomInstructions, location_name: "CustomInstructions"))
|
9997
10021
|
UpdateTopicRequest.struct_class = Types::UpdateTopicRequest
|
9998
10022
|
|
9999
10023
|
UpdateTopicResponse.add_member(:topic_id, Shapes::ShapeRef.new(shape: TopicId, location_name: "TopicId"))
|
@@ -2396,11 +2396,20 @@ module Aws::QuickSight
|
|
2396
2396
|
# role forbidding Athena access is still active.
|
2397
2397
|
# @return [String]
|
2398
2398
|
#
|
2399
|
+
# @!attribute [rw] identity_center_configuration
|
2400
|
+
# An optional parameter that configures IAM Identity Center
|
2401
|
+
# authentication to grant Amazon QuickSight access to your workgroup.
|
2402
|
+
#
|
2403
|
+
# This parameter can only be specified if your Amazon QuickSight
|
2404
|
+
# account is configured with IAM Identity Center.
|
2405
|
+
# @return [Types::IdentityCenterConfiguration]
|
2406
|
+
#
|
2399
2407
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AthenaParameters AWS API Documentation
|
2400
2408
|
#
|
2401
2409
|
class AthenaParameters < Struct.new(
|
2402
2410
|
:work_group,
|
2403
|
-
:role_arn
|
2411
|
+
:role_arn,
|
2412
|
+
:identity_center_configuration)
|
2404
2413
|
SENSITIVE = []
|
2405
2414
|
include Aws::Structure
|
2406
2415
|
end
|
@@ -3929,11 +3938,19 @@ module Aws::QuickSight
|
|
3929
3938
|
# A set of actions that correspond to Amazon QuickSight permissions.
|
3930
3939
|
#
|
3931
3940
|
# @!attribute [rw] export_to_csv
|
3932
|
-
# The ability to export to CSV files.
|
3941
|
+
# The ability to export to CSV files from the UI.
|
3933
3942
|
# @return [String]
|
3934
3943
|
#
|
3935
3944
|
# @!attribute [rw] export_to_excel
|
3936
|
-
# The ability to export to Excel files.
|
3945
|
+
# The ability to export to Excel files from the UI.
|
3946
|
+
# @return [String]
|
3947
|
+
#
|
3948
|
+
# @!attribute [rw] export_to_pdf
|
3949
|
+
# The ability to export to PDF files from the UI.
|
3950
|
+
# @return [String]
|
3951
|
+
#
|
3952
|
+
# @!attribute [rw] print_reports
|
3953
|
+
# The ability to print reports.
|
3937
3954
|
# @return [String]
|
3938
3955
|
#
|
3939
3956
|
# @!attribute [rw] create_and_update_themes
|
@@ -3996,11 +4013,29 @@ module Aws::QuickSight
|
|
3996
4013
|
# The ability to create a SPICE dataset.
|
3997
4014
|
# @return [String]
|
3998
4015
|
#
|
4016
|
+
# @!attribute [rw] export_to_pdf_in_scheduled_reports
|
4017
|
+
# The ability to export to PDF files in scheduled email reports.
|
4018
|
+
# @return [String]
|
4019
|
+
#
|
4020
|
+
# @!attribute [rw] export_to_csv_in_scheduled_reports
|
4021
|
+
# The ability to export to CSV files in scheduled email reports.
|
4022
|
+
# @return [String]
|
4023
|
+
#
|
4024
|
+
# @!attribute [rw] export_to_excel_in_scheduled_reports
|
4025
|
+
# The ability to export to Excel files in scheduled email reports.
|
4026
|
+
# @return [String]
|
4027
|
+
#
|
4028
|
+
# @!attribute [rw] include_content_in_scheduled_reports_email
|
4029
|
+
# The ability to include content in scheduled email reports.
|
4030
|
+
# @return [String]
|
4031
|
+
#
|
3999
4032
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/Capabilities AWS API Documentation
|
4000
4033
|
#
|
4001
4034
|
class Capabilities < Struct.new(
|
4002
4035
|
:export_to_csv,
|
4003
4036
|
:export_to_excel,
|
4037
|
+
:export_to_pdf,
|
4038
|
+
:print_reports,
|
4004
4039
|
:create_and_update_themes,
|
4005
4040
|
:add_or_run_anomaly_detection_for_analyses,
|
4006
4041
|
:share_analyses,
|
@@ -4015,7 +4050,11 @@ module Aws::QuickSight
|
|
4015
4050
|
:create_and_update_data_sources,
|
4016
4051
|
:share_data_sources,
|
4017
4052
|
:view_account_spice_capacity,
|
4018
|
-
:create_spice_dataset
|
4053
|
+
:create_spice_dataset,
|
4054
|
+
:export_to_pdf_in_scheduled_reports,
|
4055
|
+
:export_to_csv_in_scheduled_reports,
|
4056
|
+
:export_to_excel_in_scheduled_reports,
|
4057
|
+
:include_content_in_scheduled_reports_email)
|
4019
4058
|
SENSITIVE = []
|
4020
4059
|
include Aws::Structure
|
4021
4060
|
end
|
@@ -7316,6 +7355,10 @@ module Aws::QuickSight
|
|
7316
7355
|
# The Folder ARN of the folder that you want the topic to reside in.
|
7317
7356
|
# @return [Array<String>]
|
7318
7357
|
#
|
7358
|
+
# @!attribute [rw] custom_instructions
|
7359
|
+
# Custom instructions for the topic.
|
7360
|
+
# @return [Types::CustomInstructions]
|
7361
|
+
#
|
7319
7362
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateTopicRequest AWS API Documentation
|
7320
7363
|
#
|
7321
7364
|
class CreateTopicRequest < Struct.new(
|
@@ -7323,7 +7366,8 @@ module Aws::QuickSight
|
|
7323
7366
|
:topic_id,
|
7324
7367
|
:topic,
|
7325
7368
|
:tags,
|
7326
|
-
:folder_arns
|
7369
|
+
:folder_arns,
|
7370
|
+
:custom_instructions)
|
7327
7371
|
SENSITIVE = []
|
7328
7372
|
include Aws::Structure
|
7329
7373
|
end
|
@@ -7861,6 +7905,22 @@ module Aws::QuickSight
|
|
7861
7905
|
include Aws::Structure
|
7862
7906
|
end
|
7863
7907
|
|
7908
|
+
# Instructions that provide additional guidance and context for response
|
7909
|
+
# generation.
|
7910
|
+
#
|
7911
|
+
# @!attribute [rw] custom_instructions_string
|
7912
|
+
# A text field for providing additional guidance or context for
|
7913
|
+
# response generation.
|
7914
|
+
# @return [String]
|
7915
|
+
#
|
7916
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CustomInstructions AWS API Documentation
|
7917
|
+
#
|
7918
|
+
class CustomInstructions < Struct.new(
|
7919
|
+
:custom_instructions_string)
|
7920
|
+
SENSITIVE = [:custom_instructions_string]
|
7921
|
+
include Aws::Structure
|
7922
|
+
end
|
7923
|
+
|
7864
7924
|
# The custom narrative options.
|
7865
7925
|
#
|
7866
7926
|
# @!attribute [rw] narrative
|
@@ -9008,7 +9068,7 @@ module Aws::QuickSight
|
|
9008
9068
|
# @return [String]
|
9009
9069
|
#
|
9010
9070
|
# @!attribute [rw] data_set_id
|
9011
|
-
# The ID of the dataset.
|
9071
|
+
# The ID of the dataset. Limited to 96 characters.
|
9012
9072
|
# @return [String]
|
9013
9073
|
#
|
9014
9074
|
# @!attribute [rw] name
|
@@ -14913,6 +14973,10 @@ module Aws::QuickSight
|
|
14913
14973
|
# The HTTP status of the request.
|
14914
14974
|
# @return [Integer]
|
14915
14975
|
#
|
14976
|
+
# @!attribute [rw] custom_instructions
|
14977
|
+
# Custom instructions for the topic.
|
14978
|
+
# @return [Types::CustomInstructions]
|
14979
|
+
#
|
14916
14980
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeTopicResponse AWS API Documentation
|
14917
14981
|
#
|
14918
14982
|
class DescribeTopicResponse < Struct.new(
|
@@ -14920,7 +14984,8 @@ module Aws::QuickSight
|
|
14920
14984
|
:topic_id,
|
14921
14985
|
:topic,
|
14922
14986
|
:request_id,
|
14923
|
-
:status
|
14987
|
+
:status,
|
14988
|
+
:custom_instructions)
|
14924
14989
|
SENSITIVE = []
|
14925
14990
|
include Aws::Structure
|
14926
14991
|
end
|
@@ -30378,11 +30443,16 @@ module Aws::QuickSight
|
|
30378
30443
|
# The content that is displayed in the text box.
|
30379
30444
|
# @return [String]
|
30380
30445
|
#
|
30446
|
+
# @!attribute [rw] interactions
|
30447
|
+
# The general textbox interactions setup for a textbox.
|
30448
|
+
# @return [Types::TextBoxInteractionOptions]
|
30449
|
+
#
|
30381
30450
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SheetTextBox AWS API Documentation
|
30382
30451
|
#
|
30383
30452
|
class SheetTextBox < Struct.new(
|
30384
30453
|
:sheet_text_box_id,
|
30385
|
-
:content
|
30454
|
+
:content,
|
30455
|
+
:interactions)
|
30386
30456
|
SENSITIVE = []
|
30387
30457
|
include Aws::Structure
|
30388
30458
|
end
|
@@ -32956,6 +33026,36 @@ module Aws::QuickSight
|
|
32956
33026
|
include Aws::Structure
|
32957
33027
|
end
|
32958
33028
|
|
33029
|
+
# The general textbox interactions setup for textbox publish options.
|
33030
|
+
#
|
33031
|
+
# @!attribute [rw] text_box_menu_option
|
33032
|
+
# The menu options for the textbox.
|
33033
|
+
# @return [Types::TextBoxMenuOption]
|
33034
|
+
#
|
33035
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TextBoxInteractionOptions AWS API Documentation
|
33036
|
+
#
|
33037
|
+
class TextBoxInteractionOptions < Struct.new(
|
33038
|
+
:text_box_menu_option)
|
33039
|
+
SENSITIVE = []
|
33040
|
+
include Aws::Structure
|
33041
|
+
end
|
33042
|
+
|
33043
|
+
# The menu options for the interactions of a textbox.
|
33044
|
+
#
|
33045
|
+
# @!attribute [rw] availability_status
|
33046
|
+
# The availability status of the textbox menu. If the value of this
|
33047
|
+
# property is set to `ENABLED`, dashboard readers can interact with
|
33048
|
+
# the textbox menu.
|
33049
|
+
# @return [String]
|
33050
|
+
#
|
33051
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TextBoxMenuOption AWS API Documentation
|
33052
|
+
#
|
33053
|
+
class TextBoxMenuOption < Struct.new(
|
33054
|
+
:availability_status)
|
33055
|
+
SENSITIVE = []
|
33056
|
+
include Aws::Structure
|
33057
|
+
end
|
33058
|
+
|
32959
33059
|
# The conditional formatting for the text.
|
32960
33060
|
#
|
32961
33061
|
# @!attribute [rw] background_color
|
@@ -38057,12 +38157,17 @@ module Aws::QuickSight
|
|
38057
38157
|
# The definition of the topic that you want to update.
|
38058
38158
|
# @return [Types::TopicDetails]
|
38059
38159
|
#
|
38160
|
+
# @!attribute [rw] custom_instructions
|
38161
|
+
# Custom instructions for the topic.
|
38162
|
+
# @return [Types::CustomInstructions]
|
38163
|
+
#
|
38060
38164
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateTopicRequest AWS API Documentation
|
38061
38165
|
#
|
38062
38166
|
class UpdateTopicRequest < Struct.new(
|
38063
38167
|
:aws_account_id,
|
38064
38168
|
:topic_id,
|
38065
|
-
:topic
|
38169
|
+
:topic,
|
38170
|
+
:custom_instructions)
|
38066
38171
|
SENSITIVE = []
|
38067
38172
|
include Aws::Structure
|
38068
38173
|
end
|
data/lib/aws-sdk-quicksight.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -35212,7 +35212,12 @@ module Aws
|
|
35212
35212
|
text_boxes: Array[
|
35213
35213
|
{
|
35214
35214
|
sheet_text_box_id: ::String,
|
35215
|
-
content: ::String
|
35215
|
+
content: ::String?,
|
35216
|
+
interactions: {
|
35217
|
+
text_box_menu_option: {
|
35218
|
+
availability_status: ("ENABLED" | "DISABLED")?
|
35219
|
+
}?
|
35220
|
+
}?
|
35216
35221
|
},
|
35217
35222
|
]?,
|
35218
35223
|
images: Array[
|
@@ -38184,6 +38189,8 @@ module Aws
|
|
38184
38189
|
?capabilities: {
|
38185
38190
|
export_to_csv: ("DENY")?,
|
38186
38191
|
export_to_excel: ("DENY")?,
|
38192
|
+
export_to_pdf: ("DENY")?,
|
38193
|
+
print_reports: ("DENY")?,
|
38187
38194
|
create_and_update_themes: ("DENY")?,
|
38188
38195
|
add_or_run_anomaly_detection_for_analyses: ("DENY")?,
|
38189
38196
|
share_analyses: ("DENY")?,
|
@@ -38198,7 +38205,11 @@ module Aws
|
|
38198
38205
|
create_and_update_data_sources: ("DENY")?,
|
38199
38206
|
share_data_sources: ("DENY")?,
|
38200
38207
|
view_account_spice_capacity: ("DENY")?,
|
38201
|
-
create_spice_dataset: ("DENY")
|
38208
|
+
create_spice_dataset: ("DENY")?,
|
38209
|
+
export_to_pdf_in_scheduled_reports: ("DENY")?,
|
38210
|
+
export_to_csv_in_scheduled_reports: ("DENY")?,
|
38211
|
+
export_to_excel_in_scheduled_reports: ("DENY")?,
|
38212
|
+
include_content_in_scheduled_reports_email: ("DENY")?
|
38202
38213
|
},
|
38203
38214
|
?tags: Array[
|
38204
38215
|
{
|
@@ -72539,7 +72550,12 @@ module Aws
|
|
72539
72550
|
text_boxes: Array[
|
72540
72551
|
{
|
72541
72552
|
sheet_text_box_id: ::String,
|
72542
|
-
content: ::String
|
72553
|
+
content: ::String?,
|
72554
|
+
interactions: {
|
72555
|
+
text_box_menu_option: {
|
72556
|
+
availability_status: ("ENABLED" | "DISABLED")?
|
72557
|
+
}?
|
72558
|
+
}?
|
72543
72559
|
},
|
72544
72560
|
]?,
|
72545
72561
|
images: Array[
|
@@ -75665,7 +75681,10 @@ module Aws
|
|
75665
75681
|
}?,
|
75666
75682
|
athena_parameters: {
|
75667
75683
|
work_group: ::String?,
|
75668
|
-
role_arn: ::String
|
75684
|
+
role_arn: ::String?,
|
75685
|
+
identity_center_configuration: {
|
75686
|
+
enable_identity_propagation: bool?
|
75687
|
+
}?
|
75669
75688
|
}?,
|
75670
75689
|
aurora_parameters: {
|
75671
75690
|
host: ::String,
|
@@ -75820,7 +75839,10 @@ module Aws
|
|
75820
75839
|
}?,
|
75821
75840
|
athena_parameters: {
|
75822
75841
|
work_group: ::String?,
|
75823
|
-
role_arn: ::String
|
75842
|
+
role_arn: ::String?,
|
75843
|
+
identity_center_configuration: {
|
75844
|
+
enable_identity_propagation: bool?
|
75845
|
+
}?
|
75824
75846
|
}?,
|
75825
75847
|
aurora_parameters: {
|
75826
75848
|
host: ::String,
|
@@ -110455,7 +110477,12 @@ module Aws
|
|
110455
110477
|
text_boxes: Array[
|
110456
110478
|
{
|
110457
110479
|
sheet_text_box_id: ::String,
|
110458
|
-
content: ::String
|
110480
|
+
content: ::String?,
|
110481
|
+
interactions: {
|
110482
|
+
text_box_menu_option: {
|
110483
|
+
availability_status: ("ENABLED" | "DISABLED")?
|
110484
|
+
}?
|
110485
|
+
}?
|
110459
110486
|
},
|
110460
110487
|
]?,
|
110461
110488
|
images: Array[
|
@@ -113658,7 +113685,10 @@ module Aws
|
|
113658
113685
|
value: ::String
|
113659
113686
|
},
|
113660
113687
|
],
|
113661
|
-
?folder_arns: Array[::String]
|
113688
|
+
?folder_arns: Array[::String],
|
113689
|
+
?custom_instructions: {
|
113690
|
+
custom_instructions_string: ::String
|
113691
|
+
}
|
113662
113692
|
) -> _CreateTopicResponseSuccess
|
113663
113693
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTopicResponseSuccess
|
113664
113694
|
|
@@ -113932,7 +113962,7 @@ module Aws
|
|
113932
113962
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#delete_identity_propagation_config-instance_method
|
113933
113963
|
def delete_identity_propagation_config: (
|
113934
113964
|
aws_account_id: ::String,
|
113935
|
-
service: ("REDSHIFT" | "QBUSINESS")
|
113965
|
+
service: ("REDSHIFT" | "QBUSINESS" | "ATHENA")
|
113936
113966
|
) -> _DeleteIdentityPropagationConfigResponseSuccess
|
113937
113967
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteIdentityPropagationConfigResponseSuccess
|
113938
113968
|
|
@@ -114836,6 +114866,7 @@ module Aws
|
|
114836
114866
|
def topic: () -> Types::TopicDetails
|
114837
114867
|
def request_id: () -> ::String
|
114838
114868
|
def status: () -> ::Integer
|
114869
|
+
def custom_instructions: () -> Types::CustomInstructions
|
114839
114870
|
end
|
114840
114871
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#describe_topic-instance_method
|
114841
114872
|
def describe_topic: (
|
@@ -116077,7 +116108,10 @@ module Aws
|
|
116077
116108
|
}?,
|
116078
116109
|
athena_parameters: {
|
116079
116110
|
work_group: ::String?,
|
116080
|
-
role_arn: ::String
|
116111
|
+
role_arn: ::String?,
|
116112
|
+
identity_center_configuration: {
|
116113
|
+
enable_identity_propagation: bool?
|
116114
|
+
}?
|
116081
116115
|
}?,
|
116082
116116
|
aurora_parameters: {
|
116083
116117
|
host: ::String,
|
@@ -150866,7 +150900,12 @@ module Aws
|
|
150866
150900
|
text_boxes: Array[
|
150867
150901
|
{
|
150868
150902
|
sheet_text_box_id: ::String,
|
150869
|
-
content: ::String
|
150903
|
+
content: ::String?,
|
150904
|
+
interactions: {
|
150905
|
+
text_box_menu_option: {
|
150906
|
+
availability_status: ("ENABLED" | "DISABLED")?
|
150907
|
+
}?
|
150908
|
+
}?
|
150870
150909
|
},
|
150871
150910
|
]?,
|
150872
150911
|
images: Array[
|
@@ -153895,6 +153934,8 @@ module Aws
|
|
153895
153934
|
?capabilities: {
|
153896
153935
|
export_to_csv: ("DENY")?,
|
153897
153936
|
export_to_excel: ("DENY")?,
|
153937
|
+
export_to_pdf: ("DENY")?,
|
153938
|
+
print_reports: ("DENY")?,
|
153898
153939
|
create_and_update_themes: ("DENY")?,
|
153899
153940
|
add_or_run_anomaly_detection_for_analyses: ("DENY")?,
|
153900
153941
|
share_analyses: ("DENY")?,
|
@@ -153909,7 +153950,11 @@ module Aws
|
|
153909
153950
|
create_and_update_data_sources: ("DENY")?,
|
153910
153951
|
share_data_sources: ("DENY")?,
|
153911
153952
|
view_account_spice_capacity: ("DENY")?,
|
153912
|
-
create_spice_dataset: ("DENY")
|
153953
|
+
create_spice_dataset: ("DENY")?,
|
153954
|
+
export_to_pdf_in_scheduled_reports: ("DENY")?,
|
153955
|
+
export_to_csv_in_scheduled_reports: ("DENY")?,
|
153956
|
+
export_to_excel_in_scheduled_reports: ("DENY")?,
|
153957
|
+
include_content_in_scheduled_reports_email: ("DENY")?
|
153913
153958
|
}
|
153914
153959
|
) -> _UpdateCustomPermissionsResponseSuccess
|
153915
153960
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCustomPermissionsResponseSuccess
|
@@ -188232,7 +188277,12 @@ module Aws
|
|
188232
188277
|
text_boxes: Array[
|
188233
188278
|
{
|
188234
188279
|
sheet_text_box_id: ::String,
|
188235
|
-
content: ::String
|
188280
|
+
content: ::String?,
|
188281
|
+
interactions: {
|
188282
|
+
text_box_menu_option: {
|
188283
|
+
availability_status: ("ENABLED" | "DISABLED")?
|
188284
|
+
}?
|
188285
|
+
}?
|
188236
188286
|
},
|
188237
188287
|
]?,
|
188238
188288
|
images: Array[
|
@@ -191442,7 +191492,10 @@ module Aws
|
|
191442
191492
|
}?,
|
191443
191493
|
athena_parameters: {
|
191444
191494
|
work_group: ::String?,
|
191445
|
-
role_arn: ::String
|
191495
|
+
role_arn: ::String?,
|
191496
|
+
identity_center_configuration: {
|
191497
|
+
enable_identity_propagation: bool?
|
191498
|
+
}?
|
191446
191499
|
}?,
|
191447
191500
|
aurora_parameters: {
|
191448
191501
|
host: ::String,
|
@@ -191597,7 +191650,10 @@ module Aws
|
|
191597
191650
|
}?,
|
191598
191651
|
athena_parameters: {
|
191599
191652
|
work_group: ::String?,
|
191600
|
-
role_arn: ::String
|
191653
|
+
role_arn: ::String?,
|
191654
|
+
identity_center_configuration: {
|
191655
|
+
enable_identity_propagation: bool?
|
191656
|
+
}?
|
191601
191657
|
}?,
|
191602
191658
|
aurora_parameters: {
|
191603
191659
|
host: ::String,
|
@@ -191880,7 +191936,7 @@ module Aws
|
|
191880
191936
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#update_identity_propagation_config-instance_method
|
191881
191937
|
def update_identity_propagation_config: (
|
191882
191938
|
aws_account_id: ::String,
|
191883
|
-
service: ("REDSHIFT" | "QBUSINESS"),
|
191939
|
+
service: ("REDSHIFT" | "QBUSINESS" | "ATHENA"),
|
191884
191940
|
?authorized_targets: Array[::String]
|
191885
191941
|
) -> _UpdateIdentityPropagationConfigResponseSuccess
|
191886
191942
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateIdentityPropagationConfigResponseSuccess
|
@@ -226284,7 +226340,12 @@ module Aws
|
|
226284
226340
|
text_boxes: Array[
|
226285
226341
|
{
|
226286
226342
|
sheet_text_box_id: ::String,
|
226287
|
-
content: ::String
|
226343
|
+
content: ::String?,
|
226344
|
+
interactions: {
|
226345
|
+
text_box_menu_option: {
|
226346
|
+
availability_status: ("ENABLED" | "DISABLED")?
|
226347
|
+
}?
|
226348
|
+
}?
|
226288
226349
|
},
|
226289
226350
|
]?,
|
226290
226351
|
images: Array[
|
@@ -229522,6 +229583,9 @@ module Aws
|
|
229522
229583
|
config_options: {
|
229523
229584
|
q_business_insights_enabled: bool?
|
229524
229585
|
}?
|
229586
|
+
},
|
229587
|
+
?custom_instructions: {
|
229588
|
+
custom_instructions_string: ::String
|
229525
229589
|
}
|
229526
229590
|
) -> _UpdateTopicResponseSuccess
|
229527
229591
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTopicResponseSuccess
|
data/sig/types.rbs
CHANGED
@@ -604,6 +604,7 @@ module Aws::QuickSight
|
|
604
604
|
class AthenaParameters
|
605
605
|
attr_accessor work_group: ::String
|
606
606
|
attr_accessor role_arn: ::String
|
607
|
+
attr_accessor identity_center_configuration: Types::IdentityCenterConfiguration
|
607
608
|
SENSITIVE: []
|
608
609
|
end
|
609
610
|
|
@@ -628,7 +629,7 @@ module Aws::QuickSight
|
|
628
629
|
end
|
629
630
|
|
630
631
|
class AuthorizedTargetsByService
|
631
|
-
attr_accessor service: ("REDSHIFT" | "QBUSINESS")
|
632
|
+
attr_accessor service: ("REDSHIFT" | "QBUSINESS" | "ATHENA")
|
632
633
|
attr_accessor authorized_targets: ::Array[::String]
|
633
634
|
SENSITIVE: []
|
634
635
|
end
|
@@ -1011,6 +1012,8 @@ module Aws::QuickSight
|
|
1011
1012
|
class Capabilities
|
1012
1013
|
attr_accessor export_to_csv: ("DENY")
|
1013
1014
|
attr_accessor export_to_excel: ("DENY")
|
1015
|
+
attr_accessor export_to_pdf: ("DENY")
|
1016
|
+
attr_accessor print_reports: ("DENY")
|
1014
1017
|
attr_accessor create_and_update_themes: ("DENY")
|
1015
1018
|
attr_accessor add_or_run_anomaly_detection_for_analyses: ("DENY")
|
1016
1019
|
attr_accessor share_analyses: ("DENY")
|
@@ -1026,6 +1029,10 @@ module Aws::QuickSight
|
|
1026
1029
|
attr_accessor share_data_sources: ("DENY")
|
1027
1030
|
attr_accessor view_account_spice_capacity: ("DENY")
|
1028
1031
|
attr_accessor create_spice_dataset: ("DENY")
|
1032
|
+
attr_accessor export_to_pdf_in_scheduled_reports: ("DENY")
|
1033
|
+
attr_accessor export_to_csv_in_scheduled_reports: ("DENY")
|
1034
|
+
attr_accessor export_to_excel_in_scheduled_reports: ("DENY")
|
1035
|
+
attr_accessor include_content_in_scheduled_reports_email: ("DENY")
|
1029
1036
|
SENSITIVE: []
|
1030
1037
|
end
|
1031
1038
|
|
@@ -1827,6 +1834,7 @@ module Aws::QuickSight
|
|
1827
1834
|
attr_accessor topic: Types::TopicDetails
|
1828
1835
|
attr_accessor tags: ::Array[Types::Tag]
|
1829
1836
|
attr_accessor folder_arns: ::Array[::String]
|
1837
|
+
attr_accessor custom_instructions: Types::CustomInstructions
|
1830
1838
|
SENSITIVE: []
|
1831
1839
|
end
|
1832
1840
|
|
@@ -1955,6 +1963,11 @@ module Aws::QuickSight
|
|
1955
1963
|
SENSITIVE: []
|
1956
1964
|
end
|
1957
1965
|
|
1966
|
+
class CustomInstructions
|
1967
|
+
attr_accessor custom_instructions_string: ::String
|
1968
|
+
SENSITIVE: [:custom_instructions_string]
|
1969
|
+
end
|
1970
|
+
|
1958
1971
|
class CustomNarrativeOptions
|
1959
1972
|
attr_accessor narrative: ::String
|
1960
1973
|
SENSITIVE: []
|
@@ -2870,7 +2883,7 @@ module Aws::QuickSight
|
|
2870
2883
|
|
2871
2884
|
class DeleteIdentityPropagationConfigRequest
|
2872
2885
|
attr_accessor aws_account_id: ::String
|
2873
|
-
attr_accessor service: ("REDSHIFT" | "QBUSINESS")
|
2886
|
+
attr_accessor service: ("REDSHIFT" | "QBUSINESS" | "ATHENA")
|
2874
2887
|
SENSITIVE: []
|
2875
2888
|
end
|
2876
2889
|
|
@@ -3831,6 +3844,7 @@ module Aws::QuickSight
|
|
3831
3844
|
attr_accessor topic: Types::TopicDetails
|
3832
3845
|
attr_accessor request_id: ::String
|
3833
3846
|
attr_accessor status: ::Integer
|
3847
|
+
attr_accessor custom_instructions: Types::CustomInstructions
|
3834
3848
|
SENSITIVE: []
|
3835
3849
|
end
|
3836
3850
|
|
@@ -7842,6 +7856,7 @@ module Aws::QuickSight
|
|
7842
7856
|
class SheetTextBox
|
7843
7857
|
attr_accessor sheet_text_box_id: ::String
|
7844
7858
|
attr_accessor content: ::String
|
7859
|
+
attr_accessor interactions: Types::TextBoxInteractionOptions
|
7845
7860
|
SENSITIVE: []
|
7846
7861
|
end
|
7847
7862
|
|
@@ -8520,6 +8535,16 @@ module Aws::QuickSight
|
|
8520
8535
|
SENSITIVE: []
|
8521
8536
|
end
|
8522
8537
|
|
8538
|
+
class TextBoxInteractionOptions
|
8539
|
+
attr_accessor text_box_menu_option: Types::TextBoxMenuOption
|
8540
|
+
SENSITIVE: []
|
8541
|
+
end
|
8542
|
+
|
8543
|
+
class TextBoxMenuOption
|
8544
|
+
attr_accessor availability_status: ("ENABLED" | "DISABLED")
|
8545
|
+
SENSITIVE: []
|
8546
|
+
end
|
8547
|
+
|
8523
8548
|
class TextConditionalFormat
|
8524
8549
|
attr_accessor background_color: Types::ConditionalFormattingColor
|
8525
8550
|
attr_accessor text_color: Types::ConditionalFormattingColor
|
@@ -9576,7 +9601,7 @@ module Aws::QuickSight
|
|
9576
9601
|
|
9577
9602
|
class UpdateIdentityPropagationConfigRequest
|
9578
9603
|
attr_accessor aws_account_id: ::String
|
9579
|
-
attr_accessor service: ("REDSHIFT" | "QBUSINESS")
|
9604
|
+
attr_accessor service: ("REDSHIFT" | "QBUSINESS" | "ATHENA")
|
9580
9605
|
attr_accessor authorized_targets: ::Array[::String]
|
9581
9606
|
SENSITIVE: []
|
9582
9607
|
end
|
@@ -9838,6 +9863,7 @@ module Aws::QuickSight
|
|
9838
9863
|
attr_accessor aws_account_id: ::String
|
9839
9864
|
attr_accessor topic_id: ::String
|
9840
9865
|
attr_accessor topic: Types::TopicDetails
|
9866
|
+
attr_accessor custom_instructions: Types::CustomInstructions
|
9841
9867
|
SENSITIVE: []
|
9842
9868
|
end
|
9843
9869
|
|