aws-sdk-quicksight 1.144.0 → 1.146.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 +144 -5
- data/lib/aws-sdk-quicksight/client_api.rb +104 -10
- data/lib/aws-sdk-quicksight/types.rb +399 -13
- data/lib/aws-sdk-quicksight.rb +1 -1
- data/sig/client.rbs +248 -27
- data/sig/types.rbs +101 -1
- metadata +2 -2
@@ -362,6 +362,56 @@ module Aws::QuickSight
|
|
362
362
|
include Aws::Structure
|
363
363
|
end
|
364
364
|
|
365
|
+
# A collection of Amazon Q feature configurations in an embedded Amazon
|
366
|
+
# QuickSight console.
|
367
|
+
#
|
368
|
+
# @!attribute [rw] data_qn_a
|
369
|
+
# Adds generative Q&A capabilitiees to an embedded Amazon
|
370
|
+
# QuickSight console.
|
371
|
+
# @return [Types::DataQnAConfigurations]
|
372
|
+
#
|
373
|
+
# @!attribute [rw] generative_authoring
|
374
|
+
# Adds the generative BI authoring experience to an embedded Amazon
|
375
|
+
# QuickSight console.
|
376
|
+
# @return [Types::GenerativeAuthoringConfigurations]
|
377
|
+
#
|
378
|
+
# @!attribute [rw] executive_summary
|
379
|
+
# Adds the executive summaries feature to an embedded Amazon
|
380
|
+
# QuickSight console.
|
381
|
+
# @return [Types::ExecutiveSummaryConfigurations]
|
382
|
+
#
|
383
|
+
# @!attribute [rw] data_stories
|
384
|
+
# Adds the data stories feature to an embedded Amazon QuickSight
|
385
|
+
# console.
|
386
|
+
# @return [Types::DataStoriesConfigurations]
|
387
|
+
#
|
388
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AmazonQInQuickSightConsoleConfigurations AWS API Documentation
|
389
|
+
#
|
390
|
+
class AmazonQInQuickSightConsoleConfigurations < Struct.new(
|
391
|
+
:data_qn_a,
|
392
|
+
:generative_authoring,
|
393
|
+
:executive_summary,
|
394
|
+
:data_stories)
|
395
|
+
SENSITIVE = []
|
396
|
+
include Aws::Structure
|
397
|
+
end
|
398
|
+
|
399
|
+
# A collection of Amazon Q feature configurations in an embedded Amazon
|
400
|
+
# QuickSight dashboard.
|
401
|
+
#
|
402
|
+
# @!attribute [rw] executive_summary
|
403
|
+
# A generated executive summary of an embedded Amazon QuickSight
|
404
|
+
# dashboard.
|
405
|
+
# @return [Types::ExecutiveSummaryConfigurations]
|
406
|
+
#
|
407
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AmazonQInQuickSightDashboardConfigurations AWS API Documentation
|
408
|
+
#
|
409
|
+
class AmazonQInQuickSightDashboardConfigurations < Struct.new(
|
410
|
+
:executive_summary)
|
411
|
+
SENSITIVE = []
|
412
|
+
include Aws::Structure
|
413
|
+
end
|
414
|
+
|
365
415
|
# Metadata structure for an analysis in Amazon QuickSight
|
366
416
|
#
|
367
417
|
# @!attribute [rw] analysis_id
|
@@ -1508,11 +1558,16 @@ module Aws::QuickSight
|
|
1508
1558
|
# A new name for the dataset.
|
1509
1559
|
# @return [String]
|
1510
1560
|
#
|
1561
|
+
# @!attribute [rw] data_set_refresh_properties
|
1562
|
+
# The refresh properties of a dataset.
|
1563
|
+
# @return [Types::DataSetRefreshProperties]
|
1564
|
+
#
|
1511
1565
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AssetBundleImportJobDataSetOverrideParameters AWS API Documentation
|
1512
1566
|
#
|
1513
1567
|
class AssetBundleImportJobDataSetOverrideParameters < Struct.new(
|
1514
1568
|
:data_set_id,
|
1515
|
-
:name
|
1569
|
+
:name,
|
1570
|
+
:data_set_refresh_properties)
|
1516
1571
|
SENSITIVE = []
|
1517
1572
|
include Aws::Structure
|
1518
1573
|
end
|
@@ -2300,11 +2355,27 @@ module Aws::QuickSight
|
|
2300
2355
|
# Determines the week start day for an analysis.
|
2301
2356
|
# @return [String]
|
2302
2357
|
#
|
2358
|
+
# @!attribute [rw] q_business_insights_status
|
2359
|
+
# Determines whether insight summaries from Amazon Q Business are
|
2360
|
+
# allowed in Dashboard Q&A.
|
2361
|
+
# @return [String]
|
2362
|
+
#
|
2363
|
+
# @!attribute [rw] excluded_data_set_arns
|
2364
|
+
# A list of dataset ARNS to exclude from Dashboard Q&A.
|
2365
|
+
# @return [Array<String>]
|
2366
|
+
#
|
2367
|
+
# @!attribute [rw] custom_action_defaults
|
2368
|
+
# A list of visual custom actions for the analysis.
|
2369
|
+
# @return [Types::VisualCustomActionDefaults]
|
2370
|
+
#
|
2303
2371
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AssetOptions AWS API Documentation
|
2304
2372
|
#
|
2305
2373
|
class AssetOptions < Struct.new(
|
2306
2374
|
:timezone,
|
2307
|
-
:week_start
|
2375
|
+
:week_start,
|
2376
|
+
:q_business_insights_status,
|
2377
|
+
:excluded_data_set_arns,
|
2378
|
+
:custom_action_defaults)
|
2308
2379
|
SENSITIVE = []
|
2309
2380
|
include Aws::Structure
|
2310
2381
|
end
|
@@ -6084,6 +6155,11 @@ module Aws::QuickSight
|
|
6084
6155
|
# that contains a `UniqueKey` configuration.
|
6085
6156
|
# @return [Types::PerformanceConfiguration]
|
6086
6157
|
#
|
6158
|
+
# @!attribute [rw] use_as
|
6159
|
+
# The usage of the dataset. `RLS_RULES` must be specified for RLS
|
6160
|
+
# permission datasets.
|
6161
|
+
# @return [String]
|
6162
|
+
#
|
6087
6163
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateDataSetRequest AWS API Documentation
|
6088
6164
|
#
|
6089
6165
|
class CreateDataSetRequest < Struct.new(
|
@@ -6103,7 +6179,8 @@ module Aws::QuickSight
|
|
6103
6179
|
:data_set_usage_configuration,
|
6104
6180
|
:dataset_parameters,
|
6105
6181
|
:folder_arns,
|
6106
|
-
:performance_configuration
|
6182
|
+
:performance_configuration,
|
6183
|
+
:use_as)
|
6107
6184
|
SENSITIVE = []
|
6108
6185
|
include Aws::Structure
|
6109
6186
|
end
|
@@ -8045,6 +8122,14 @@ module Aws::QuickSight
|
|
8045
8122
|
# The data point tool tip options of a dashboard.
|
8046
8123
|
# @return [Types::DataPointTooltipOption]
|
8047
8124
|
#
|
8125
|
+
# @!attribute [rw] data_qa_enabled_option
|
8126
|
+
# Adds Q&A capabilities to an Amazon QuickSight dashboard. If no
|
8127
|
+
# topic is linked, Dashboard Q&A uses the data values that are
|
8128
|
+
# rendered on the dashboard. End users can use Dashboard Q&A to
|
8129
|
+
# ask for different slices of the data that they see on the dashboard.
|
8130
|
+
# If a topic is linked, Topic Q&A is used.
|
8131
|
+
# @return [Types::DataQAEnabledOption]
|
8132
|
+
#
|
8048
8133
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DashboardPublishOptions AWS API Documentation
|
8049
8134
|
#
|
8050
8135
|
class DashboardPublishOptions < Struct.new(
|
@@ -8058,7 +8143,8 @@ module Aws::QuickSight
|
|
8058
8143
|
:export_with_hidden_fields_option,
|
8059
8144
|
:data_point_drill_up_down_option,
|
8060
8145
|
:data_point_menu_label_option,
|
8061
|
-
:data_point_tooltip_option
|
8146
|
+
:data_point_tooltip_option,
|
8147
|
+
:data_qa_enabled_option)
|
8062
8148
|
SENSITIVE = []
|
8063
8149
|
include Aws::Structure
|
8064
8150
|
end
|
@@ -8881,6 +8967,40 @@ module Aws::QuickSight
|
|
8881
8967
|
include Aws::Structure
|
8882
8968
|
end
|
8883
8969
|
|
8970
|
+
# Adds Q&A capabilities to a dashboard. If no topic is linked,
|
8971
|
+
# Dashboard Q&A uses the data values that are rendered on the
|
8972
|
+
# dashboard. End users can use Dashboard Q&A to ask for different
|
8973
|
+
# slices of the data that they see on the dashboard. If a topic is
|
8974
|
+
# linked, Topic Q&A is enabled.
|
8975
|
+
#
|
8976
|
+
# @!attribute [rw] availability_status
|
8977
|
+
# The status of the Data Q&A option on the dashboard.
|
8978
|
+
# @return [String]
|
8979
|
+
#
|
8980
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DataQAEnabledOption AWS API Documentation
|
8981
|
+
#
|
8982
|
+
class DataQAEnabledOption < Struct.new(
|
8983
|
+
:availability_status)
|
8984
|
+
SENSITIVE = []
|
8985
|
+
include Aws::Structure
|
8986
|
+
end
|
8987
|
+
|
8988
|
+
# The generative Q&A settings of an embedded Amazon QuickSight
|
8989
|
+
# console.
|
8990
|
+
#
|
8991
|
+
# @!attribute [rw] enabled
|
8992
|
+
# The generative Q&A settings of an embedded Amazon QuickSight
|
8993
|
+
# console.
|
8994
|
+
# @return [Boolean]
|
8995
|
+
#
|
8996
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DataQnAConfigurations AWS API Documentation
|
8997
|
+
#
|
8998
|
+
class DataQnAConfigurations < Struct.new(
|
8999
|
+
:enabled)
|
9000
|
+
SENSITIVE = []
|
9001
|
+
include Aws::Structure
|
9002
|
+
end
|
9003
|
+
|
8884
9004
|
# Dataset.
|
8885
9005
|
#
|
8886
9006
|
# @!attribute [rw] arn
|
@@ -8963,6 +9083,10 @@ module Aws::QuickSight
|
|
8963
9083
|
# The performance optimization configuration of a dataset.
|
8964
9084
|
# @return [Types::PerformanceConfiguration]
|
8965
9085
|
#
|
9086
|
+
# @!attribute [rw] use_as
|
9087
|
+
# The usage of the dataset.
|
9088
|
+
# @return [String]
|
9089
|
+
#
|
8966
9090
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DataSet AWS API Documentation
|
8967
9091
|
#
|
8968
9092
|
class DataSet < Struct.new(
|
@@ -8983,7 +9107,8 @@ module Aws::QuickSight
|
|
8983
9107
|
:column_level_permission_rules,
|
8984
9108
|
:data_set_usage_configuration,
|
8985
9109
|
:dataset_parameters,
|
8986
|
-
:performance_configuration
|
9110
|
+
:performance_configuration,
|
9111
|
+
:use_as)
|
8987
9112
|
SENSITIVE = []
|
8988
9113
|
include Aws::Structure
|
8989
9114
|
end
|
@@ -9056,10 +9181,15 @@ module Aws::QuickSight
|
|
9056
9181
|
# The refresh configuration for a dataset.
|
9057
9182
|
# @return [Types::RefreshConfiguration]
|
9058
9183
|
#
|
9184
|
+
# @!attribute [rw] failure_configuration
|
9185
|
+
# The failure configuration for a dataset.
|
9186
|
+
# @return [Types::RefreshFailureConfiguration]
|
9187
|
+
#
|
9059
9188
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DataSetRefreshProperties AWS API Documentation
|
9060
9189
|
#
|
9061
9190
|
class DataSetRefreshProperties < Struct.new(
|
9062
|
-
:refresh_configuration
|
9191
|
+
:refresh_configuration,
|
9192
|
+
:failure_configuration)
|
9063
9193
|
SENSITIVE = []
|
9064
9194
|
include Aws::Structure
|
9065
9195
|
end
|
@@ -9190,6 +9320,10 @@ module Aws::QuickSight
|
|
9190
9320
|
# configured.
|
9191
9321
|
# @return [Boolean]
|
9192
9322
|
#
|
9323
|
+
# @!attribute [rw] use_as
|
9324
|
+
# The usage of the dataset.
|
9325
|
+
# @return [String]
|
9326
|
+
#
|
9193
9327
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DataSetSummary AWS API Documentation
|
9194
9328
|
#
|
9195
9329
|
class DataSetSummary < Struct.new(
|
@@ -9201,7 +9335,8 @@ module Aws::QuickSight
|
|
9201
9335
|
:import_mode,
|
9202
9336
|
:row_level_permission_data_set,
|
9203
9337
|
:row_level_permission_tag_configuration_applied,
|
9204
|
-
:column_level_permission_rules_applied
|
9338
|
+
:column_level_permission_rules_applied,
|
9339
|
+
:use_as)
|
9205
9340
|
SENSITIVE = []
|
9206
9341
|
include Aws::Structure
|
9207
9342
|
end
|
@@ -9616,6 +9751,20 @@ module Aws::QuickSight
|
|
9616
9751
|
include Aws::Structure
|
9617
9752
|
end
|
9618
9753
|
|
9754
|
+
# The data story settings of an embedded Amazon QuickSight console.
|
9755
|
+
#
|
9756
|
+
# @!attribute [rw] enabled
|
9757
|
+
# The data story settings of an embedded Amazon QuickSight console.
|
9758
|
+
# @return [Boolean]
|
9759
|
+
#
|
9760
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DataStoriesConfigurations AWS API Documentation
|
9761
|
+
#
|
9762
|
+
class DataStoriesConfigurations < Struct.new(
|
9763
|
+
:enabled)
|
9764
|
+
SENSITIVE = []
|
9765
|
+
include Aws::Structure
|
9766
|
+
end
|
9767
|
+
|
9619
9768
|
# The parameters that are required to connect to a Databricks data
|
9620
9769
|
# source.
|
9621
9770
|
#
|
@@ -15254,6 +15403,22 @@ module Aws::QuickSight
|
|
15254
15403
|
include Aws::Structure
|
15255
15404
|
end
|
15256
15405
|
|
15406
|
+
# The executive summary settings of an embedded Amazon QuickSight
|
15407
|
+
# console or dashboard.
|
15408
|
+
#
|
15409
|
+
# @!attribute [rw] enabled
|
15410
|
+
# The executive summary settings of an embedded Amazon QuickSight
|
15411
|
+
# console or dashboard.
|
15412
|
+
# @return [Boolean]
|
15413
|
+
#
|
15414
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ExecutiveSummaryConfigurations AWS API Documentation
|
15415
|
+
#
|
15416
|
+
class ExecutiveSummaryConfigurations < Struct.new(
|
15417
|
+
:enabled)
|
15418
|
+
SENSITIVE = []
|
15419
|
+
include Aws::Structure
|
15420
|
+
end
|
15421
|
+
|
15257
15422
|
# The option that determines the hierarchy of the fields that are built
|
15258
15423
|
# within a visual's field wells. These fields can't be duplicated to
|
15259
15424
|
# other visuals.
|
@@ -15346,7 +15511,7 @@ module Aws::QuickSight
|
|
15346
15511
|
# the error was caused by user error. If the value of this property is
|
15347
15512
|
# `False`, the error occurred on the backend. If your job continues
|
15348
15513
|
# fail and with a `False` `SenderFault` value, contact Amazon Web
|
15349
|
-
#
|
15514
|
+
# ServicesSupport.
|
15350
15515
|
# @return [Boolean]
|
15351
15516
|
#
|
15352
15517
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FailedKeyRegistrationEntry AWS API Documentation
|
@@ -17742,6 +17907,22 @@ module Aws::QuickSight
|
|
17742
17907
|
include Aws::Structure
|
17743
17908
|
end
|
17744
17909
|
|
17910
|
+
# The generative BI authoring settings of an embedded Amazon QuickSight
|
17911
|
+
# console.
|
17912
|
+
#
|
17913
|
+
# @!attribute [rw] enabled
|
17914
|
+
# The generative BI authoring settings of an embedded Amazon
|
17915
|
+
# QuickSight console.
|
17916
|
+
# @return [Boolean]
|
17917
|
+
#
|
17918
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GenerativeAuthoringConfigurations AWS API Documentation
|
17919
|
+
#
|
17920
|
+
class GenerativeAuthoringConfigurations < Struct.new(
|
17921
|
+
:enabled)
|
17922
|
+
SENSITIVE = []
|
17923
|
+
include Aws::Structure
|
17924
|
+
end
|
17925
|
+
|
17745
17926
|
# Geospatial column group that denotes a hierarchy.
|
17746
17927
|
#
|
17747
17928
|
# @!attribute [rw] name
|
@@ -24579,12 +24760,19 @@ module Aws::QuickSight
|
|
24579
24760
|
# The database.
|
24580
24761
|
# @return [String]
|
24581
24762
|
#
|
24763
|
+
# @!attribute [rw] use_service_name
|
24764
|
+
# A Boolean value that indicates whether the `Database` uses a service
|
24765
|
+
# name or an SID. If this value is left blank, the default value is
|
24766
|
+
# `SID`. If this value is set to `false`, the value is `SID`.
|
24767
|
+
# @return [Boolean]
|
24768
|
+
#
|
24582
24769
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/OracleParameters AWS API Documentation
|
24583
24770
|
#
|
24584
24771
|
class OracleParameters < Struct.new(
|
24585
24772
|
:host,
|
24586
24773
|
:port,
|
24587
|
-
:database
|
24774
|
+
:database,
|
24775
|
+
:use_service_name)
|
24588
24776
|
SENSITIVE = []
|
24589
24777
|
include Aws::Structure
|
24590
24778
|
end
|
@@ -26903,6 +27091,22 @@ module Aws::QuickSight
|
|
26903
27091
|
include Aws::Structure
|
26904
27092
|
end
|
26905
27093
|
|
27094
|
+
# The recent snapshots configuration for an embedded Amazon QuickSight
|
27095
|
+
# dashboard.
|
27096
|
+
#
|
27097
|
+
# @!attribute [rw] enabled
|
27098
|
+
# The recent snapshots configuration for an embedded Amazon QuickSight
|
27099
|
+
# dashboard.
|
27100
|
+
# @return [Boolean]
|
27101
|
+
#
|
27102
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/RecentSnapshotsConfigurations AWS API Documentation
|
27103
|
+
#
|
27104
|
+
class RecentSnapshotsConfigurations < Struct.new(
|
27105
|
+
:enabled)
|
27106
|
+
SENSITIVE = []
|
27107
|
+
include Aws::Structure
|
27108
|
+
end
|
27109
|
+
|
26906
27110
|
# A structure that grants Amazon QuickSight access to your cluster and
|
26907
27111
|
# make a call to the `redshift:GetClusterCredentials` API. For more
|
26908
27112
|
# information on the `redshift:GetClusterCredentials` API, see [
|
@@ -27250,6 +27454,35 @@ module Aws::QuickSight
|
|
27250
27454
|
include Aws::Structure
|
27251
27455
|
end
|
27252
27456
|
|
27457
|
+
# The failure configuration of a dataset.
|
27458
|
+
#
|
27459
|
+
# @!attribute [rw] email_alert
|
27460
|
+
# The email alert configuration for a dataset refresh failure.
|
27461
|
+
# @return [Types::RefreshFailureEmailAlert]
|
27462
|
+
#
|
27463
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/RefreshFailureConfiguration AWS API Documentation
|
27464
|
+
#
|
27465
|
+
class RefreshFailureConfiguration < Struct.new(
|
27466
|
+
:email_alert)
|
27467
|
+
SENSITIVE = []
|
27468
|
+
include Aws::Structure
|
27469
|
+
end
|
27470
|
+
|
27471
|
+
# The configuration settings for the email alerts that are sent when a
|
27472
|
+
# dataset refresh fails.
|
27473
|
+
#
|
27474
|
+
# @!attribute [rw] alert_status
|
27475
|
+
# The status value that determines if email alerts are sent.
|
27476
|
+
# @return [String]
|
27477
|
+
#
|
27478
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/RefreshFailureEmailAlert AWS API Documentation
|
27479
|
+
#
|
27480
|
+
class RefreshFailureEmailAlert < Struct.new(
|
27481
|
+
:alert_status)
|
27482
|
+
SENSITIVE = []
|
27483
|
+
include Aws::Structure
|
27484
|
+
end
|
27485
|
+
|
27253
27486
|
# Specifies the interval between each scheduled refresh of a dataset.
|
27254
27487
|
#
|
27255
27488
|
# @!attribute [rw] interval
|
@@ -27578,11 +27811,35 @@ module Aws::QuickSight
|
|
27578
27811
|
# The shared view settings of an embedded dashboard.
|
27579
27812
|
# @return [Types::SharedViewConfigurations]
|
27580
27813
|
#
|
27814
|
+
# @!attribute [rw] amazon_q_in_quick_sight
|
27815
|
+
# The Amazon Q configurations of an embedded Amazon QuickSight
|
27816
|
+
# console.
|
27817
|
+
# @return [Types::AmazonQInQuickSightConsoleConfigurations]
|
27818
|
+
#
|
27819
|
+
# @!attribute [rw] schedules
|
27820
|
+
# The schedules configuration for an embedded Amazon QuickSight
|
27821
|
+
# dashboard.
|
27822
|
+
# @return [Types::SchedulesConfigurations]
|
27823
|
+
#
|
27824
|
+
# @!attribute [rw] recent_snapshots
|
27825
|
+
# The recent snapshots configuration for an embedded Amazon QuickSight
|
27826
|
+
# dashboard.
|
27827
|
+
# @return [Types::RecentSnapshotsConfigurations]
|
27828
|
+
#
|
27829
|
+
# @!attribute [rw] threshold_alerts
|
27830
|
+
# The threshold alerts configuration for an embedded Amazon QuickSight
|
27831
|
+
# dashboard.
|
27832
|
+
# @return [Types::ThresholdAlertsConfigurations]
|
27833
|
+
#
|
27581
27834
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/RegisteredUserConsoleFeatureConfigurations AWS API Documentation
|
27582
27835
|
#
|
27583
27836
|
class RegisteredUserConsoleFeatureConfigurations < Struct.new(
|
27584
27837
|
:state_persistence,
|
27585
|
-
:shared_view
|
27838
|
+
:shared_view,
|
27839
|
+
:amazon_q_in_quick_sight,
|
27840
|
+
:schedules,
|
27841
|
+
:recent_snapshots,
|
27842
|
+
:threshold_alerts)
|
27586
27843
|
SENSITIVE = []
|
27587
27844
|
include Aws::Structure
|
27588
27845
|
end
|
@@ -27628,12 +27885,36 @@ module Aws::QuickSight
|
|
27628
27885
|
# QuickSight.
|
27629
27886
|
# @return [Types::BookmarksConfigurations]
|
27630
27887
|
#
|
27888
|
+
# @!attribute [rw] amazon_q_in_quick_sight
|
27889
|
+
# The Amazon Q configurations of an embedded Amazon QuickSight
|
27890
|
+
# dashboard.
|
27891
|
+
# @return [Types::AmazonQInQuickSightDashboardConfigurations]
|
27892
|
+
#
|
27893
|
+
# @!attribute [rw] schedules
|
27894
|
+
# The schedules configuration for an embedded Amazon QuickSight
|
27895
|
+
# dashboard.
|
27896
|
+
# @return [Types::SchedulesConfigurations]
|
27897
|
+
#
|
27898
|
+
# @!attribute [rw] recent_snapshots
|
27899
|
+
# The recent snapshots configuration for an Amazon QuickSight embedded
|
27900
|
+
# dashboard
|
27901
|
+
# @return [Types::RecentSnapshotsConfigurations]
|
27902
|
+
#
|
27903
|
+
# @!attribute [rw] threshold_alerts
|
27904
|
+
# The threshold alerts configuration for an Amazon QuickSight embedded
|
27905
|
+
# dashboard.
|
27906
|
+
# @return [Types::ThresholdAlertsConfigurations]
|
27907
|
+
#
|
27631
27908
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/RegisteredUserDashboardFeatureConfigurations AWS API Documentation
|
27632
27909
|
#
|
27633
27910
|
class RegisteredUserDashboardFeatureConfigurations < Struct.new(
|
27634
27911
|
:state_persistence,
|
27635
27912
|
:shared_view,
|
27636
|
-
:bookmarks
|
27913
|
+
:bookmarks,
|
27914
|
+
:amazon_q_in_quick_sight,
|
27915
|
+
:schedules,
|
27916
|
+
:recent_snapshots,
|
27917
|
+
:threshold_alerts)
|
27637
27918
|
SENSITIVE = []
|
27638
27919
|
include Aws::Structure
|
27639
27920
|
end
|
@@ -28868,6 +29149,22 @@ module Aws::QuickSight
|
|
28868
29149
|
include Aws::Structure
|
28869
29150
|
end
|
28870
29151
|
|
29152
|
+
# The schedules configuration for an embedded Amazon QuickSight
|
29153
|
+
# dashboard.
|
29154
|
+
#
|
29155
|
+
# @!attribute [rw] enabled
|
29156
|
+
# The schedules configuration for an embedded Amazon QuickSight
|
29157
|
+
# dashboard.
|
29158
|
+
# @return [Boolean]
|
29159
|
+
#
|
29160
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SchedulesConfigurations AWS API Documentation
|
29161
|
+
#
|
29162
|
+
class SchedulesConfigurations < Struct.new(
|
29163
|
+
:enabled)
|
29164
|
+
SENSITIVE = []
|
29165
|
+
include Aws::Structure
|
29166
|
+
end
|
29167
|
+
|
28871
29168
|
# The visual display options for a data zoom scroll bar.
|
28872
29169
|
#
|
28873
29170
|
# @!attribute [rw] visibility
|
@@ -29839,6 +30136,10 @@ module Aws::QuickSight
|
|
29839
30136
|
# * `INTERACTIVE`: Creates a sheet for an interactive dashboard.
|
29840
30137
|
# @return [String]
|
29841
30138
|
#
|
30139
|
+
# @!attribute [rw] custom_action_defaults
|
30140
|
+
# A list of visual custom actions for the sheet.
|
30141
|
+
# @return [Types::VisualCustomActionDefaults]
|
30142
|
+
#
|
29842
30143
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SheetDefinition AWS API Documentation
|
29843
30144
|
#
|
29844
30145
|
class SheetDefinition < Struct.new(
|
@@ -29853,7 +30154,8 @@ module Aws::QuickSight
|
|
29853
30154
|
:images,
|
29854
30155
|
:layouts,
|
29855
30156
|
:sheet_control_layouts,
|
29856
|
-
:content_type
|
30157
|
+
:content_type,
|
30158
|
+
:custom_action_defaults)
|
29857
30159
|
SENSITIVE = []
|
29858
30160
|
include Aws::Structure
|
29859
30161
|
end
|
@@ -31853,12 +32155,17 @@ module Aws::QuickSight
|
|
31853
32155
|
# The settings for the pinned columns of a table visual.
|
31854
32156
|
# @return [Types::TablePinnedFieldOptions]
|
31855
32157
|
#
|
32158
|
+
# @!attribute [rw] transposed_table_options
|
32159
|
+
# The `TableOptions` of a transposed table.
|
32160
|
+
# @return [Array<Types::TransposedTableOption>]
|
32161
|
+
#
|
31856
32162
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TableFieldOptions AWS API Documentation
|
31857
32163
|
#
|
31858
32164
|
class TableFieldOptions < Struct.new(
|
31859
32165
|
:selected_field_options,
|
31860
32166
|
:order,
|
31861
|
-
:pinned_field_options
|
32167
|
+
:pinned_field_options,
|
32168
|
+
:transposed_table_options)
|
31862
32169
|
SENSITIVE = []
|
31863
32170
|
include Aws::Structure
|
31864
32171
|
end
|
@@ -32986,6 +33293,22 @@ module Aws::QuickSight
|
|
32986
33293
|
include Aws::Structure
|
32987
33294
|
end
|
32988
33295
|
|
33296
|
+
# The threshold alerts configuration for an embedded Amazon QuickSight
|
33297
|
+
# dashboard.
|
33298
|
+
#
|
33299
|
+
# @!attribute [rw] enabled
|
33300
|
+
# The threshold alerts configuration for an embedded Amazon QuickSight
|
33301
|
+
# dashboard.
|
33302
|
+
# @return [Boolean]
|
33303
|
+
#
|
33304
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ThresholdAlertsConfigurations AWS API Documentation
|
33305
|
+
#
|
33306
|
+
class ThresholdAlertsConfigurations < Struct.new(
|
33307
|
+
:enabled)
|
33308
|
+
SENSITIVE = []
|
33309
|
+
include Aws::Structure
|
33310
|
+
end
|
33311
|
+
|
32989
33312
|
# Access is throttled.
|
32990
33313
|
#
|
32991
33314
|
# @!attribute [rw] message
|
@@ -34765,6 +35088,38 @@ module Aws::QuickSight
|
|
34765
35088
|
include Aws::Structure
|
34766
35089
|
end
|
34767
35090
|
|
35091
|
+
# The column option of the transposed table.
|
35092
|
+
#
|
35093
|
+
# @!attribute [rw] column_index
|
35094
|
+
# The index of a columns in a transposed table. The index range is
|
35095
|
+
# 0-9999.
|
35096
|
+
# @return [Integer]
|
35097
|
+
#
|
35098
|
+
# @!attribute [rw] column_width
|
35099
|
+
# The width of a column in a transposed table.
|
35100
|
+
# @return [String]
|
35101
|
+
#
|
35102
|
+
# @!attribute [rw] column_type
|
35103
|
+
# The column type of the column in a transposed table. Choose one of
|
35104
|
+
# the following options:
|
35105
|
+
#
|
35106
|
+
# * `ROW_HEADER_COLUMN`: Refers to the leftmost column of the row
|
35107
|
+
# header in the transposed table.
|
35108
|
+
#
|
35109
|
+
# * `VALUE_COLUMN`: Refers to all value columns in the transposed
|
35110
|
+
# table.
|
35111
|
+
# @return [String]
|
35112
|
+
#
|
35113
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TransposedTableOption AWS API Documentation
|
35114
|
+
#
|
35115
|
+
class TransposedTableOption < Struct.new(
|
35116
|
+
:column_index,
|
35117
|
+
:column_width,
|
35118
|
+
:column_type)
|
35119
|
+
SENSITIVE = []
|
35120
|
+
include Aws::Structure
|
35121
|
+
end
|
35122
|
+
|
34768
35123
|
# Aggregated field wells of a tree map.
|
34769
35124
|
#
|
34770
35125
|
# @!attribute [rw] groups
|
@@ -38701,6 +39056,21 @@ module Aws::QuickSight
|
|
38701
39056
|
include Aws::Structure
|
38702
39057
|
end
|
38703
39058
|
|
39059
|
+
# A list of custom actions applied to visuals in an analysis or sheet.
|
39060
|
+
#
|
39061
|
+
# @!attribute [rw] highlight_operation
|
39062
|
+
# A list of highlight operations available for visuals in an analysis
|
39063
|
+
# or sheet.
|
39064
|
+
# @return [Types::VisualHighlightOperation]
|
39065
|
+
#
|
39066
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/VisualCustomActionDefaults AWS API Documentation
|
39067
|
+
#
|
39068
|
+
class VisualCustomActionDefaults < Struct.new(
|
39069
|
+
:highlight_operation)
|
39070
|
+
SENSITIVE = []
|
39071
|
+
include Aws::Structure
|
39072
|
+
end
|
39073
|
+
|
38704
39074
|
# The operation that is defined by the custom action.
|
38705
39075
|
#
|
38706
39076
|
# This is a union type structure. For this structure to be valid, only
|
@@ -38735,6 +39105,22 @@ module Aws::QuickSight
|
|
38735
39105
|
include Aws::Structure
|
38736
39106
|
end
|
38737
39107
|
|
39108
|
+
# Defines what initiates a highlight operation on a visual, such as a
|
39109
|
+
# click or hover.
|
39110
|
+
#
|
39111
|
+
# @!attribute [rw] trigger
|
39112
|
+
# Specifies whether a highlight operation is initiated by a click or
|
39113
|
+
# hover, or whether it's disabled.
|
39114
|
+
# @return [String]
|
39115
|
+
#
|
39116
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/VisualHighlightOperation AWS API Documentation
|
39117
|
+
#
|
39118
|
+
class VisualHighlightOperation < Struct.new(
|
39119
|
+
:trigger)
|
39120
|
+
SENSITIVE = []
|
39121
|
+
include Aws::Structure
|
39122
|
+
end
|
39123
|
+
|
38738
39124
|
# The general visual interactions setup for visual publish options
|
38739
39125
|
#
|
38740
39126
|
# @!attribute [rw] visual_menu_option
|