aws-sdk-quicksight 1.137.0 → 1.139.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 +668 -4
- data/lib/aws-sdk-quicksight/client_api.rb +728 -0
- data/lib/aws-sdk-quicksight/types.rb +2091 -34
- data/lib/aws-sdk-quicksight.rb +1 -1
- data/sig/client.rbs +22485 -7141
- data/sig/types.rbs +583 -5
- metadata +2 -2
@@ -497,6 +497,10 @@ module Aws::QuickSight
|
|
497
497
|
# A structure that describes the query execution options.
|
498
498
|
# @return [Types::QueryExecutionOptions]
|
499
499
|
#
|
500
|
+
# @!attribute [rw] static_files
|
501
|
+
# The static files for the definition.
|
502
|
+
# @return [Array<Types::StaticFile>]
|
503
|
+
#
|
500
504
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AnalysisDefinition AWS API Documentation
|
501
505
|
#
|
502
506
|
class AnalysisDefinition < Struct.new(
|
@@ -508,7 +512,8 @@ module Aws::QuickSight
|
|
508
512
|
:column_configurations,
|
509
513
|
:analysis_defaults,
|
510
514
|
:options,
|
511
|
-
:query_execution_options
|
515
|
+
:query_execution_options,
|
516
|
+
:static_files)
|
512
517
|
SENSITIVE = []
|
513
518
|
include Aws::Structure
|
514
519
|
end
|
@@ -2198,7 +2203,9 @@ module Aws::QuickSight
|
|
2198
2203
|
#
|
2199
2204
|
# @!attribute [rw] body
|
2200
2205
|
# The bytes of the base64 encoded asset bundle import zip file. This
|
2201
|
-
# file can't exceed 20 MB.
|
2206
|
+
# file can't exceed 20 MB. If the size of the file that you want to
|
2207
|
+
# upload is more than 20 MB, add the file to your Amazon S3 bucket and
|
2208
|
+
# use `S3Uri` of the file for this operation.
|
2202
2209
|
#
|
2203
2210
|
# If you are calling the API operations from the Amazon Web Services
|
2204
2211
|
# SDK for Java, JavaScript, Python, or PHP, the SDK encodes base64
|
@@ -2210,7 +2217,7 @@ module Aws::QuickSight
|
|
2210
2217
|
# @!attribute [rw] s3_uri
|
2211
2218
|
# The Amazon S3 URI for an asset bundle import file that exists in an
|
2212
2219
|
# Amazon S3 bucket that the caller has read access to. The file must
|
2213
|
-
# be a zip format file and can't exceed
|
2220
|
+
# be a zip format file and can't exceed 1 GB.
|
2214
2221
|
# @return [String]
|
2215
2222
|
#
|
2216
2223
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AssetBundleImportSource AWS API Documentation
|
@@ -2917,6 +2924,10 @@ module Aws::QuickSight
|
|
2917
2924
|
# The column hierarchy that is used during drill-downs and drill-ups.
|
2918
2925
|
# @return [Array<Types::ColumnHierarchy>]
|
2919
2926
|
#
|
2927
|
+
# @!attribute [rw] visual_content_alt_text
|
2928
|
+
# The alt text for the visual.
|
2929
|
+
# @return [String]
|
2930
|
+
#
|
2920
2931
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/BarChartVisual AWS API Documentation
|
2921
2932
|
#
|
2922
2933
|
class BarChartVisual < Struct.new(
|
@@ -2925,7 +2936,8 @@ module Aws::QuickSight
|
|
2925
2936
|
:subtitle,
|
2926
2937
|
:chart_configuration,
|
2927
2938
|
:actions,
|
2928
|
-
:column_hierarchies
|
2939
|
+
:column_hierarchies,
|
2940
|
+
:visual_content_alt_text)
|
2929
2941
|
SENSITIVE = []
|
2930
2942
|
include Aws::Structure
|
2931
2943
|
end
|
@@ -3510,6 +3522,10 @@ module Aws::QuickSight
|
|
3510
3522
|
# The column hierarchy that is used during drill-downs and drill-ups.
|
3511
3523
|
# @return [Array<Types::ColumnHierarchy>]
|
3512
3524
|
#
|
3525
|
+
# @!attribute [rw] visual_content_alt_text
|
3526
|
+
# The alt text for the visual.
|
3527
|
+
# @return [String]
|
3528
|
+
#
|
3513
3529
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/BoxPlotVisual AWS API Documentation
|
3514
3530
|
#
|
3515
3531
|
class BoxPlotVisual < Struct.new(
|
@@ -3518,7 +3534,8 @@ module Aws::QuickSight
|
|
3518
3534
|
:subtitle,
|
3519
3535
|
:chart_configuration,
|
3520
3536
|
:actions,
|
3521
|
-
:column_hierarchies
|
3537
|
+
:column_hierarchies,
|
3538
|
+
:visual_content_alt_text)
|
3522
3539
|
SENSITIVE = []
|
3523
3540
|
include Aws::Structure
|
3524
3541
|
end
|
@@ -4829,6 +4846,10 @@ module Aws::QuickSight
|
|
4829
4846
|
# The column hierarchy that is used during drill-downs and drill-ups.
|
4830
4847
|
# @return [Array<Types::ColumnHierarchy>]
|
4831
4848
|
#
|
4849
|
+
# @!attribute [rw] visual_content_alt_text
|
4850
|
+
# The alt text for the visual.
|
4851
|
+
# @return [String]
|
4852
|
+
#
|
4832
4853
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ComboChartVisual AWS API Documentation
|
4833
4854
|
#
|
4834
4855
|
class ComboChartVisual < Struct.new(
|
@@ -4837,7 +4858,8 @@ module Aws::QuickSight
|
|
4837
4858
|
:subtitle,
|
4838
4859
|
:chart_configuration,
|
4839
4860
|
:actions,
|
4840
|
-
:column_hierarchies
|
4861
|
+
:column_hierarchies,
|
4862
|
+
:visual_content_alt_text)
|
4841
4863
|
SENSITIVE = []
|
4842
4864
|
include Aws::Structure
|
4843
4865
|
end
|
@@ -7207,13 +7229,18 @@ module Aws::QuickSight
|
|
7207
7229
|
# that are assigned to the dataset.
|
7208
7230
|
# @return [Array<Types::Tag>]
|
7209
7231
|
#
|
7232
|
+
# @!attribute [rw] folder_arns
|
7233
|
+
# The Folder ARN of the folder that you want the topic to reside in.
|
7234
|
+
# @return [Array<String>]
|
7235
|
+
#
|
7210
7236
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateTopicRequest AWS API Documentation
|
7211
7237
|
#
|
7212
7238
|
class CreateTopicRequest < Struct.new(
|
7213
7239
|
:aws_account_id,
|
7214
7240
|
:topic_id,
|
7215
7241
|
:topic,
|
7216
|
-
:tags
|
7242
|
+
:tags,
|
7243
|
+
:folder_arns)
|
7217
7244
|
SENSITIVE = []
|
7218
7245
|
include Aws::Structure
|
7219
7246
|
end
|
@@ -7639,6 +7666,10 @@ module Aws::QuickSight
|
|
7639
7666
|
# can't create a visual without a dataset.
|
7640
7667
|
# @return [String]
|
7641
7668
|
#
|
7669
|
+
# @!attribute [rw] visual_content_alt_text
|
7670
|
+
# The alt text for the visual.
|
7671
|
+
# @return [String]
|
7672
|
+
#
|
7642
7673
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CustomContentVisual AWS API Documentation
|
7643
7674
|
#
|
7644
7675
|
class CustomContentVisual < Struct.new(
|
@@ -7647,7 +7678,8 @@ module Aws::QuickSight
|
|
7647
7678
|
:subtitle,
|
7648
7679
|
:chart_configuration,
|
7649
7680
|
:actions,
|
7650
|
-
:data_set_identifier
|
7681
|
+
:data_set_identifier,
|
7682
|
+
:visual_content_alt_text)
|
7651
7683
|
SENSITIVE = []
|
7652
7684
|
include Aws::Structure
|
7653
7685
|
end
|
@@ -8289,6 +8321,10 @@ module Aws::QuickSight
|
|
8289
8321
|
# An array of option definitions for a dashboard.
|
8290
8322
|
# @return [Types::AssetOptions]
|
8291
8323
|
#
|
8324
|
+
# @!attribute [rw] static_files
|
8325
|
+
# The static files for the definition.
|
8326
|
+
# @return [Array<Types::StaticFile>]
|
8327
|
+
#
|
8292
8328
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DashboardVersionDefinition AWS API Documentation
|
8293
8329
|
#
|
8294
8330
|
class DashboardVersionDefinition < Struct.new(
|
@@ -8299,7 +8335,8 @@ module Aws::QuickSight
|
|
8299
8335
|
:filter_groups,
|
8300
8336
|
:column_configurations,
|
8301
8337
|
:analysis_defaults,
|
8302
|
-
:options
|
8338
|
+
:options,
|
8339
|
+
:static_files)
|
8303
8340
|
SENSITIVE = []
|
8304
8341
|
include Aws::Structure
|
8305
8342
|
end
|
@@ -8403,6 +8440,55 @@ module Aws::QuickSight
|
|
8403
8440
|
include Aws::Structure
|
8404
8441
|
end
|
8405
8442
|
|
8443
|
+
# The QA result that is made from dashboard visual.
|
8444
|
+
#
|
8445
|
+
# @!attribute [rw] dashboard_id
|
8446
|
+
# The ID of the dashboard.
|
8447
|
+
# @return [String]
|
8448
|
+
#
|
8449
|
+
# @!attribute [rw] dashboard_name
|
8450
|
+
# The name of the dashboard.
|
8451
|
+
# @return [String]
|
8452
|
+
#
|
8453
|
+
# @!attribute [rw] sheet_id
|
8454
|
+
# The ID of the sheet.
|
8455
|
+
# @return [String]
|
8456
|
+
#
|
8457
|
+
# @!attribute [rw] sheet_name
|
8458
|
+
# The name of the sheet.
|
8459
|
+
# @return [String]
|
8460
|
+
#
|
8461
|
+
# @!attribute [rw] visual_id
|
8462
|
+
# The ID of the visual.
|
8463
|
+
# @return [String]
|
8464
|
+
#
|
8465
|
+
# @!attribute [rw] visual_title
|
8466
|
+
# The title of the visual.
|
8467
|
+
# @return [String]
|
8468
|
+
#
|
8469
|
+
# @!attribute [rw] visual_subtitle
|
8470
|
+
# The subtitle of the visual.
|
8471
|
+
# @return [String]
|
8472
|
+
#
|
8473
|
+
# @!attribute [rw] dashboard_url
|
8474
|
+
# The URL of the dashboard.
|
8475
|
+
# @return [String]
|
8476
|
+
#
|
8477
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DashboardVisualResult AWS API Documentation
|
8478
|
+
#
|
8479
|
+
class DashboardVisualResult < Struct.new(
|
8480
|
+
:dashboard_id,
|
8481
|
+
:dashboard_name,
|
8482
|
+
:sheet_id,
|
8483
|
+
:sheet_name,
|
8484
|
+
:visual_id,
|
8485
|
+
:visual_title,
|
8486
|
+
:visual_subtitle,
|
8487
|
+
:dashboard_url)
|
8488
|
+
SENSITIVE = []
|
8489
|
+
include Aws::Structure
|
8490
|
+
end
|
8491
|
+
|
8406
8492
|
# A structure that represents a data aggregation.
|
8407
8493
|
#
|
8408
8494
|
# @!attribute [rw] dataset_row_date_granularity
|
@@ -10924,6 +11010,45 @@ module Aws::QuickSight
|
|
10924
11010
|
include Aws::Structure
|
10925
11011
|
end
|
10926
11012
|
|
11013
|
+
# @!attribute [rw] aws_account_id
|
11014
|
+
# The ID of the Amazon QuickSight account that you want to disconnect
|
11015
|
+
# from a Amazon Q Business application.
|
11016
|
+
# @return [String]
|
11017
|
+
#
|
11018
|
+
# @!attribute [rw] namespace
|
11019
|
+
# The Amazon QuickSight namespace that you want to delete a linked
|
11020
|
+
# Amazon Q Business application from. If this field is left blank, the
|
11021
|
+
# Amazon Q Business application is deleted from the default namespace.
|
11022
|
+
# Currently, the default namespace is the only valid value for this
|
11023
|
+
# parameter.
|
11024
|
+
# @return [String]
|
11025
|
+
#
|
11026
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteDefaultQBusinessApplicationRequest AWS API Documentation
|
11027
|
+
#
|
11028
|
+
class DeleteDefaultQBusinessApplicationRequest < Struct.new(
|
11029
|
+
:aws_account_id,
|
11030
|
+
:namespace)
|
11031
|
+
SENSITIVE = []
|
11032
|
+
include Aws::Structure
|
11033
|
+
end
|
11034
|
+
|
11035
|
+
# @!attribute [rw] request_id
|
11036
|
+
# The Amazon Web Services request ID for this operation.
|
11037
|
+
# @return [String]
|
11038
|
+
#
|
11039
|
+
# @!attribute [rw] status
|
11040
|
+
# The HTTP status of the request.
|
11041
|
+
# @return [Integer]
|
11042
|
+
#
|
11043
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteDefaultQBusinessApplicationResponse AWS API Documentation
|
11044
|
+
#
|
11045
|
+
class DeleteDefaultQBusinessApplicationResponse < Struct.new(
|
11046
|
+
:request_id,
|
11047
|
+
:status)
|
11048
|
+
SENSITIVE = []
|
11049
|
+
include Aws::Structure
|
11050
|
+
end
|
11051
|
+
|
10927
11052
|
# @!attribute [rw] aws_account_id
|
10928
11053
|
# The ID for the Amazon Web Services account that contains the folder.
|
10929
11054
|
# @return [String]
|
@@ -13043,6 +13168,41 @@ module Aws::QuickSight
|
|
13043
13168
|
include Aws::Structure
|
13044
13169
|
end
|
13045
13170
|
|
13171
|
+
# @!attribute [rw] aws_account_id
|
13172
|
+
# The ID of the Amazon Web Services account that contains the
|
13173
|
+
# dashboard QA configuration that you want described.
|
13174
|
+
# @return [String]
|
13175
|
+
#
|
13176
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeDashboardsQAConfigurationRequest AWS API Documentation
|
13177
|
+
#
|
13178
|
+
class DescribeDashboardsQAConfigurationRequest < Struct.new(
|
13179
|
+
:aws_account_id)
|
13180
|
+
SENSITIVE = []
|
13181
|
+
include Aws::Structure
|
13182
|
+
end
|
13183
|
+
|
13184
|
+
# @!attribute [rw] dashboards_qa_status
|
13185
|
+
# The status of dashboards QA configuration that you want described.
|
13186
|
+
# @return [String]
|
13187
|
+
#
|
13188
|
+
# @!attribute [rw] request_id
|
13189
|
+
# The Amazon Web Services request ID for this operation.
|
13190
|
+
# @return [String]
|
13191
|
+
#
|
13192
|
+
# @!attribute [rw] status
|
13193
|
+
# The HTTP status of the request.
|
13194
|
+
# @return [Integer]
|
13195
|
+
#
|
13196
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeDashboardsQAConfigurationResponse AWS API Documentation
|
13197
|
+
#
|
13198
|
+
class DescribeDashboardsQAConfigurationResponse < Struct.new(
|
13199
|
+
:dashboards_qa_status,
|
13200
|
+
:request_id,
|
13201
|
+
:status)
|
13202
|
+
SENSITIVE = []
|
13203
|
+
include Aws::Structure
|
13204
|
+
end
|
13205
|
+
|
13046
13206
|
# @!attribute [rw] aws_account_id
|
13047
13207
|
# The Amazon Web Services account ID.
|
13048
13208
|
# @return [String]
|
@@ -13264,6 +13424,50 @@ module Aws::QuickSight
|
|
13264
13424
|
include Aws::Structure
|
13265
13425
|
end
|
13266
13426
|
|
13427
|
+
# @!attribute [rw] aws_account_id
|
13428
|
+
# The ID of the Amazon QuickSight account that is linked to the Amazon
|
13429
|
+
# Q Business application that you want described.
|
13430
|
+
# @return [String]
|
13431
|
+
#
|
13432
|
+
# @!attribute [rw] namespace
|
13433
|
+
# The Amazon QuickSight namespace that contains the linked Amazon Q
|
13434
|
+
# Business application. If this field is left blank, the default
|
13435
|
+
# namespace is used. Currently, the default namespace is the only
|
13436
|
+
# valid value for this parameter.
|
13437
|
+
# @return [String]
|
13438
|
+
#
|
13439
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeDefaultQBusinessApplicationRequest AWS API Documentation
|
13440
|
+
#
|
13441
|
+
class DescribeDefaultQBusinessApplicationRequest < Struct.new(
|
13442
|
+
:aws_account_id,
|
13443
|
+
:namespace)
|
13444
|
+
SENSITIVE = []
|
13445
|
+
include Aws::Structure
|
13446
|
+
end
|
13447
|
+
|
13448
|
+
# @!attribute [rw] request_id
|
13449
|
+
# The Amazon Web Services request ID for this operation.
|
13450
|
+
# @return [String]
|
13451
|
+
#
|
13452
|
+
# @!attribute [rw] status
|
13453
|
+
# The HTTP status of the request.
|
13454
|
+
# @return [Integer]
|
13455
|
+
#
|
13456
|
+
# @!attribute [rw] application_id
|
13457
|
+
# The ID of the Amazon Q Business application that is linked to the
|
13458
|
+
# Amazon QuickSight account.
|
13459
|
+
# @return [String]
|
13460
|
+
#
|
13461
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeDefaultQBusinessApplicationResponse AWS API Documentation
|
13462
|
+
#
|
13463
|
+
class DescribeDefaultQBusinessApplicationResponse < Struct.new(
|
13464
|
+
:request_id,
|
13465
|
+
:status,
|
13466
|
+
:application_id)
|
13467
|
+
SENSITIVE = []
|
13468
|
+
include Aws::Structure
|
13469
|
+
end
|
13470
|
+
|
13267
13471
|
# @!attribute [rw] aws_account_id
|
13268
13472
|
# The ID for the Amazon Web Services account that contains the folder.
|
13269
13473
|
# @return [String]
|
@@ -13813,6 +14017,41 @@ module Aws::QuickSight
|
|
13813
14017
|
include Aws::Structure
|
13814
14018
|
end
|
13815
14019
|
|
14020
|
+
# @!attribute [rw] aws_account_id
|
14021
|
+
# The ID of the Amazon Web Services account that contains the Amazon
|
14022
|
+
# QuickSight Q Search configuration that the user wants described.
|
14023
|
+
# @return [String]
|
14024
|
+
#
|
14025
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeQuickSightQSearchConfigurationRequest AWS API Documentation
|
14026
|
+
#
|
14027
|
+
class DescribeQuickSightQSearchConfigurationRequest < Struct.new(
|
14028
|
+
:aws_account_id)
|
14029
|
+
SENSITIVE = []
|
14030
|
+
include Aws::Structure
|
14031
|
+
end
|
14032
|
+
|
14033
|
+
# @!attribute [rw] q_search_status
|
14034
|
+
# The status of Amazon QuickSight Q Search configuration.
|
14035
|
+
# @return [String]
|
14036
|
+
#
|
14037
|
+
# @!attribute [rw] request_id
|
14038
|
+
# The Amazon Web Services request ID for this operation.
|
14039
|
+
# @return [String]
|
14040
|
+
#
|
14041
|
+
# @!attribute [rw] status
|
14042
|
+
# The HTTP status of the request.
|
14043
|
+
# @return [Integer]
|
14044
|
+
#
|
14045
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeQuickSightQSearchConfigurationResponse AWS API Documentation
|
14046
|
+
#
|
14047
|
+
class DescribeQuickSightQSearchConfigurationResponse < Struct.new(
|
14048
|
+
:q_search_status,
|
14049
|
+
:request_id,
|
14050
|
+
:status)
|
14051
|
+
SENSITIVE = []
|
14052
|
+
include Aws::Structure
|
14053
|
+
end
|
14054
|
+
|
13816
14055
|
# @!attribute [rw] aws_account_id
|
13817
14056
|
# The Amazon Web Services account ID.
|
13818
14057
|
# @return [String]
|
@@ -15463,6 +15702,10 @@ module Aws::QuickSight
|
|
15463
15702
|
# The list of custom actions that are configured for a visual.
|
15464
15703
|
# @return [Array<Types::VisualCustomAction>]
|
15465
15704
|
#
|
15705
|
+
# @!attribute [rw] visual_content_alt_text
|
15706
|
+
# The alt text for the visual.
|
15707
|
+
# @return [String]
|
15708
|
+
#
|
15466
15709
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FilledMapVisual AWS API Documentation
|
15467
15710
|
#
|
15468
15711
|
class FilledMapVisual < Struct.new(
|
@@ -15472,7 +15715,8 @@ module Aws::QuickSight
|
|
15472
15715
|
:chart_configuration,
|
15473
15716
|
:conditional_formatting,
|
15474
15717
|
:column_hierarchies,
|
15475
|
-
:actions
|
15718
|
+
:actions,
|
15719
|
+
:visual_content_alt_text)
|
15476
15720
|
SENSITIVE = []
|
15477
15721
|
include Aws::Structure
|
15478
15722
|
end
|
@@ -16400,6 +16644,10 @@ module Aws::QuickSight
|
|
16400
16644
|
# family.
|
16401
16645
|
# @return [String]
|
16402
16646
|
#
|
16647
|
+
# @!attribute [rw] font_family
|
16648
|
+
# The font family that you want to use.
|
16649
|
+
# @return [String]
|
16650
|
+
#
|
16403
16651
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FontConfiguration AWS API Documentation
|
16404
16652
|
#
|
16405
16653
|
class FontConfiguration < Struct.new(
|
@@ -16407,7 +16655,8 @@ module Aws::QuickSight
|
|
16407
16655
|
:font_decoration,
|
16408
16656
|
:font_color,
|
16409
16657
|
:font_weight,
|
16410
|
-
:font_style
|
16658
|
+
:font_style,
|
16659
|
+
:font_family)
|
16411
16660
|
SENSITIVE = []
|
16412
16661
|
include Aws::Structure
|
16413
16662
|
end
|
@@ -16419,10 +16668,15 @@ module Aws::QuickSight
|
|
16419
16668
|
# context.
|
16420
16669
|
# @return [String]
|
16421
16670
|
#
|
16671
|
+
# @!attribute [rw] absolute
|
16672
|
+
# The font size that you want to use in px.
|
16673
|
+
# @return [String]
|
16674
|
+
#
|
16422
16675
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FontSize AWS API Documentation
|
16423
16676
|
#
|
16424
16677
|
class FontSize < Struct.new(
|
16425
|
-
:relative
|
16678
|
+
:relative,
|
16679
|
+
:absolute)
|
16426
16680
|
SENSITIVE = []
|
16427
16681
|
include Aws::Structure
|
16428
16682
|
end
|
@@ -16938,6 +17192,10 @@ module Aws::QuickSight
|
|
16938
17192
|
# The column hierarchy that is used during drill-downs and drill-ups.
|
16939
17193
|
# @return [Array<Types::ColumnHierarchy>]
|
16940
17194
|
#
|
17195
|
+
# @!attribute [rw] visual_content_alt_text
|
17196
|
+
# The alt text for the visual.
|
17197
|
+
# @return [String]
|
17198
|
+
#
|
16941
17199
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FunnelChartVisual AWS API Documentation
|
16942
17200
|
#
|
16943
17201
|
class FunnelChartVisual < Struct.new(
|
@@ -16946,7 +17204,8 @@ module Aws::QuickSight
|
|
16946
17204
|
:subtitle,
|
16947
17205
|
:chart_configuration,
|
16948
17206
|
:actions,
|
16949
|
-
:column_hierarchies
|
17207
|
+
:column_hierarchies,
|
17208
|
+
:visual_content_alt_text)
|
16950
17209
|
SENSITIVE = []
|
16951
17210
|
include Aws::Structure
|
16952
17211
|
end
|
@@ -17174,6 +17433,10 @@ module Aws::QuickSight
|
|
17174
17433
|
# The list of custom actions that are configured for a visual.
|
17175
17434
|
# @return [Array<Types::VisualCustomAction>]
|
17176
17435
|
#
|
17436
|
+
# @!attribute [rw] visual_content_alt_text
|
17437
|
+
# The alt text for the visual.
|
17438
|
+
# @return [String]
|
17439
|
+
#
|
17177
17440
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GaugeChartVisual AWS API Documentation
|
17178
17441
|
#
|
17179
17442
|
class GaugeChartVisual < Struct.new(
|
@@ -17182,7 +17445,8 @@ module Aws::QuickSight
|
|
17182
17445
|
:subtitle,
|
17183
17446
|
:chart_configuration,
|
17184
17447
|
:conditional_formatting,
|
17185
|
-
:actions
|
17448
|
+
:actions,
|
17449
|
+
:visual_content_alt_text)
|
17186
17450
|
SENSITIVE = []
|
17187
17451
|
include Aws::Structure
|
17188
17452
|
end
|
@@ -17361,6 +17625,112 @@ module Aws::QuickSight
|
|
17361
17625
|
include Aws::Structure
|
17362
17626
|
end
|
17363
17627
|
|
17628
|
+
# @!attribute [rw] aws_account_id
|
17629
|
+
# The ID of the Amazon Web Services registered user.
|
17630
|
+
# @return [String]
|
17631
|
+
#
|
17632
|
+
# @!attribute [rw] session_lifetime_in_minutes
|
17633
|
+
# The validity of the session in minutes.
|
17634
|
+
# @return [Integer]
|
17635
|
+
#
|
17636
|
+
# @!attribute [rw] experience_configuration
|
17637
|
+
# The type of experience you want to embed. For registered users, you
|
17638
|
+
# can embed Amazon QuickSight dashboards or the Amazon QuickSight
|
17639
|
+
# console.
|
17640
|
+
#
|
17641
|
+
# <note markdown="1"> Exactly one of the experience configurations is required. You can
|
17642
|
+
# choose `Dashboard` or `QuickSightConsole`. You cannot choose more
|
17643
|
+
# than one experience configuration.
|
17644
|
+
#
|
17645
|
+
# </note>
|
17646
|
+
# @return [Types::RegisteredUserEmbeddingExperienceConfiguration]
|
17647
|
+
#
|
17648
|
+
# @!attribute [rw] allowed_domains
|
17649
|
+
# A list of domains to be allowed to generate the embed URL.
|
17650
|
+
# @return [Array<String>]
|
17651
|
+
#
|
17652
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GenerateEmbedUrlForRegisteredUserWithIdentityRequest AWS API Documentation
|
17653
|
+
#
|
17654
|
+
class GenerateEmbedUrlForRegisteredUserWithIdentityRequest < Struct.new(
|
17655
|
+
:aws_account_id,
|
17656
|
+
:session_lifetime_in_minutes,
|
17657
|
+
:experience_configuration,
|
17658
|
+
:allowed_domains)
|
17659
|
+
SENSITIVE = []
|
17660
|
+
include Aws::Structure
|
17661
|
+
end
|
17662
|
+
|
17663
|
+
# @!attribute [rw] embed_url
|
17664
|
+
# The generated embed URL for the registered user.
|
17665
|
+
# @return [String]
|
17666
|
+
#
|
17667
|
+
# @!attribute [rw] status
|
17668
|
+
# The HTTP status of the request.
|
17669
|
+
# @return [Integer]
|
17670
|
+
#
|
17671
|
+
# @!attribute [rw] request_id
|
17672
|
+
# The Amazon Web Services request ID for this operation.
|
17673
|
+
# @return [String]
|
17674
|
+
#
|
17675
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GenerateEmbedUrlForRegisteredUserWithIdentityResponse AWS API Documentation
|
17676
|
+
#
|
17677
|
+
class GenerateEmbedUrlForRegisteredUserWithIdentityResponse < Struct.new(
|
17678
|
+
:embed_url,
|
17679
|
+
:status,
|
17680
|
+
:request_id)
|
17681
|
+
SENSITIVE = [:embed_url]
|
17682
|
+
include Aws::Structure
|
17683
|
+
end
|
17684
|
+
|
17685
|
+
# The QA result that is made from generated answer.
|
17686
|
+
#
|
17687
|
+
# @!attribute [rw] question_text
|
17688
|
+
# The question text.
|
17689
|
+
# @return [String]
|
17690
|
+
#
|
17691
|
+
# @!attribute [rw] answer_status
|
17692
|
+
# The answer status of the generated answer.
|
17693
|
+
# @return [String]
|
17694
|
+
#
|
17695
|
+
# @!attribute [rw] topic_id
|
17696
|
+
# The ID of the topic.
|
17697
|
+
# @return [String]
|
17698
|
+
#
|
17699
|
+
# @!attribute [rw] topic_name
|
17700
|
+
# The name of the topic.
|
17701
|
+
# @return [String]
|
17702
|
+
#
|
17703
|
+
# @!attribute [rw] restatement
|
17704
|
+
# The restatement for the answer.
|
17705
|
+
# @return [String]
|
17706
|
+
#
|
17707
|
+
# @!attribute [rw] question_id
|
17708
|
+
# The ID of the question.
|
17709
|
+
# @return [String]
|
17710
|
+
#
|
17711
|
+
# @!attribute [rw] answer_id
|
17712
|
+
# The ID of the answer.
|
17713
|
+
# @return [String]
|
17714
|
+
#
|
17715
|
+
# @!attribute [rw] question_url
|
17716
|
+
# The URL of the question.
|
17717
|
+
# @return [String]
|
17718
|
+
#
|
17719
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeneratedAnswerResult AWS API Documentation
|
17720
|
+
#
|
17721
|
+
class GeneratedAnswerResult < Struct.new(
|
17722
|
+
:question_text,
|
17723
|
+
:answer_status,
|
17724
|
+
:topic_id,
|
17725
|
+
:topic_name,
|
17726
|
+
:restatement,
|
17727
|
+
:question_id,
|
17728
|
+
:answer_id,
|
17729
|
+
:question_url)
|
17730
|
+
SENSITIVE = [:question_text, :restatement]
|
17731
|
+
include Aws::Structure
|
17732
|
+
end
|
17733
|
+
|
17364
17734
|
# Geospatial column group that denotes a hierarchy.
|
17365
17735
|
#
|
17366
17736
|
# @!attribute [rw] name
|
@@ -17385,6 +17755,122 @@ module Aws::QuickSight
|
|
17385
17755
|
include Aws::Structure
|
17386
17756
|
end
|
17387
17757
|
|
17758
|
+
# The definition for a categorical color.
|
17759
|
+
#
|
17760
|
+
# @!attribute [rw] category_data_colors
|
17761
|
+
# A list of categorical data colors for each category.
|
17762
|
+
# @return [Array<Types::GeospatialCategoricalDataColor>]
|
17763
|
+
#
|
17764
|
+
# @!attribute [rw] null_data_visibility
|
17765
|
+
# The state of visibility for null data.
|
17766
|
+
# @return [String]
|
17767
|
+
#
|
17768
|
+
# @!attribute [rw] null_data_settings
|
17769
|
+
# The null data visualization settings.
|
17770
|
+
# @return [Types::GeospatialNullDataSettings]
|
17771
|
+
#
|
17772
|
+
# @!attribute [rw] default_opacity
|
17773
|
+
# The default opacity of a categorical color.
|
17774
|
+
# @return [Float]
|
17775
|
+
#
|
17776
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialCategoricalColor AWS API Documentation
|
17777
|
+
#
|
17778
|
+
class GeospatialCategoricalColor < Struct.new(
|
17779
|
+
:category_data_colors,
|
17780
|
+
:null_data_visibility,
|
17781
|
+
:null_data_settings,
|
17782
|
+
:default_opacity)
|
17783
|
+
SENSITIVE = []
|
17784
|
+
include Aws::Structure
|
17785
|
+
end
|
17786
|
+
|
17787
|
+
# The categorical data color for a single category.
|
17788
|
+
#
|
17789
|
+
# @!attribute [rw] color
|
17790
|
+
# The color and opacity values for the category data color.
|
17791
|
+
# @return [String]
|
17792
|
+
#
|
17793
|
+
# @!attribute [rw] data_value
|
17794
|
+
# The data value for the category data color.
|
17795
|
+
# @return [String]
|
17796
|
+
#
|
17797
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialCategoricalDataColor AWS API Documentation
|
17798
|
+
#
|
17799
|
+
class GeospatialCategoricalDataColor < Struct.new(
|
17800
|
+
:color,
|
17801
|
+
:data_value)
|
17802
|
+
SENSITIVE = []
|
17803
|
+
include Aws::Structure
|
17804
|
+
end
|
17805
|
+
|
17806
|
+
# The geospatial radius for a circle.
|
17807
|
+
#
|
17808
|
+
# @!attribute [rw] radius
|
17809
|
+
# The positive value for the radius of a circle.
|
17810
|
+
# @return [Float]
|
17811
|
+
#
|
17812
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialCircleRadius AWS API Documentation
|
17813
|
+
#
|
17814
|
+
class GeospatialCircleRadius < Struct.new(
|
17815
|
+
:radius)
|
17816
|
+
SENSITIVE = []
|
17817
|
+
include Aws::Structure
|
17818
|
+
end
|
17819
|
+
|
17820
|
+
# The properties for a circle symbol style.
|
17821
|
+
#
|
17822
|
+
# @!attribute [rw] fill_color
|
17823
|
+
# The color and opacity values for the fill color.
|
17824
|
+
# @return [Types::GeospatialColor]
|
17825
|
+
#
|
17826
|
+
# @!attribute [rw] stroke_color
|
17827
|
+
# The color and opacity values for the stroke color.
|
17828
|
+
# @return [Types::GeospatialColor]
|
17829
|
+
#
|
17830
|
+
# @!attribute [rw] stroke_width
|
17831
|
+
# The width of the stroke (border).
|
17832
|
+
# @return [Types::GeospatialLineWidth]
|
17833
|
+
#
|
17834
|
+
# @!attribute [rw] circle_radius
|
17835
|
+
# The radius of the circle.
|
17836
|
+
# @return [Types::GeospatialCircleRadius]
|
17837
|
+
#
|
17838
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialCircleSymbolStyle AWS API Documentation
|
17839
|
+
#
|
17840
|
+
class GeospatialCircleSymbolStyle < Struct.new(
|
17841
|
+
:fill_color,
|
17842
|
+
:stroke_color,
|
17843
|
+
:stroke_width,
|
17844
|
+
:circle_radius)
|
17845
|
+
SENSITIVE = []
|
17846
|
+
include Aws::Structure
|
17847
|
+
end
|
17848
|
+
|
17849
|
+
# The visualization properties for solid, gradient, and categorical
|
17850
|
+
# colors.
|
17851
|
+
#
|
17852
|
+
# @!attribute [rw] solid
|
17853
|
+
# The visualization properties for the solid color.
|
17854
|
+
# @return [Types::GeospatialSolidColor]
|
17855
|
+
#
|
17856
|
+
# @!attribute [rw] gradient
|
17857
|
+
# The visualization properties for the gradient color.
|
17858
|
+
# @return [Types::GeospatialGradientColor]
|
17859
|
+
#
|
17860
|
+
# @!attribute [rw] categorical
|
17861
|
+
# The visualization properties for the categorical color.
|
17862
|
+
# @return [Types::GeospatialCategoricalColor]
|
17863
|
+
#
|
17864
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialColor AWS API Documentation
|
17865
|
+
#
|
17866
|
+
class GeospatialColor < Struct.new(
|
17867
|
+
:solid,
|
17868
|
+
:gradient,
|
17869
|
+
:categorical)
|
17870
|
+
SENSITIVE = []
|
17871
|
+
include Aws::Structure
|
17872
|
+
end
|
17873
|
+
|
17388
17874
|
# The bound options (north, south, west, east) of the geospatial window
|
17389
17875
|
# options.
|
17390
17876
|
#
|
@@ -17415,6 +17901,68 @@ module Aws::QuickSight
|
|
17415
17901
|
include Aws::Structure
|
17416
17902
|
end
|
17417
17903
|
|
17904
|
+
# The data source properties for the geospatial data.
|
17905
|
+
#
|
17906
|
+
# @!attribute [rw] static_file_data_source
|
17907
|
+
# The static file data source properties for the geospatial data.
|
17908
|
+
# @return [Types::GeospatialStaticFileSource]
|
17909
|
+
#
|
17910
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialDataSourceItem AWS API Documentation
|
17911
|
+
#
|
17912
|
+
class GeospatialDataSourceItem < Struct.new(
|
17913
|
+
:static_file_data_source)
|
17914
|
+
SENSITIVE = []
|
17915
|
+
include Aws::Structure
|
17916
|
+
end
|
17917
|
+
|
17918
|
+
# The definition for a gradient color.
|
17919
|
+
#
|
17920
|
+
# @!attribute [rw] step_colors
|
17921
|
+
# A list of gradient step colors for the gradient.
|
17922
|
+
# @return [Array<Types::GeospatialGradientStepColor>]
|
17923
|
+
#
|
17924
|
+
# @!attribute [rw] null_data_visibility
|
17925
|
+
# The state of visibility for null data.
|
17926
|
+
# @return [String]
|
17927
|
+
#
|
17928
|
+
# @!attribute [rw] null_data_settings
|
17929
|
+
# The null data visualization settings.
|
17930
|
+
# @return [Types::GeospatialNullDataSettings]
|
17931
|
+
#
|
17932
|
+
# @!attribute [rw] default_opacity
|
17933
|
+
# The default opacity for the gradient color.
|
17934
|
+
# @return [Float]
|
17935
|
+
#
|
17936
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialGradientColor AWS API Documentation
|
17937
|
+
#
|
17938
|
+
class GeospatialGradientColor < Struct.new(
|
17939
|
+
:step_colors,
|
17940
|
+
:null_data_visibility,
|
17941
|
+
:null_data_settings,
|
17942
|
+
:default_opacity)
|
17943
|
+
SENSITIVE = []
|
17944
|
+
include Aws::Structure
|
17945
|
+
end
|
17946
|
+
|
17947
|
+
# The gradient step color for a single step.
|
17948
|
+
#
|
17949
|
+
# @!attribute [rw] color
|
17950
|
+
# The color and opacity values for the gradient step color.
|
17951
|
+
# @return [String]
|
17952
|
+
#
|
17953
|
+
# @!attribute [rw] data_value
|
17954
|
+
# The data value for the gradient step color.
|
17955
|
+
# @return [Float]
|
17956
|
+
#
|
17957
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialGradientStepColor AWS API Documentation
|
17958
|
+
#
|
17959
|
+
class GeospatialGradientStepColor < Struct.new(
|
17960
|
+
:color,
|
17961
|
+
:data_value)
|
17962
|
+
SENSITIVE = []
|
17963
|
+
include Aws::Structure
|
17964
|
+
end
|
17965
|
+
|
17418
17966
|
# The color scale specification for the heatmap point style.
|
17419
17967
|
#
|
17420
17968
|
# @!attribute [rw] colors
|
@@ -17457,6 +18005,223 @@ module Aws::QuickSight
|
|
17457
18005
|
include Aws::Structure
|
17458
18006
|
end
|
17459
18007
|
|
18008
|
+
# The color field that defines a gradient or categorical style.
|
18009
|
+
#
|
18010
|
+
# @!attribute [rw] color_dimensions_fields
|
18011
|
+
# A list of color dimension fields.
|
18012
|
+
# @return [Array<Types::DimensionField>]
|
18013
|
+
#
|
18014
|
+
# @!attribute [rw] color_values_fields
|
18015
|
+
# A list of color measure fields.
|
18016
|
+
# @return [Array<Types::MeasureField>]
|
18017
|
+
#
|
18018
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialLayerColorField AWS API Documentation
|
18019
|
+
#
|
18020
|
+
class GeospatialLayerColorField < Struct.new(
|
18021
|
+
:color_dimensions_fields,
|
18022
|
+
:color_values_fields)
|
18023
|
+
SENSITIVE = []
|
18024
|
+
include Aws::Structure
|
18025
|
+
end
|
18026
|
+
|
18027
|
+
# The definition properties for a geospatial layer.
|
18028
|
+
#
|
18029
|
+
# @!attribute [rw] point_layer
|
18030
|
+
# The definition for a point layer.
|
18031
|
+
# @return [Types::GeospatialPointLayer]
|
18032
|
+
#
|
18033
|
+
# @!attribute [rw] line_layer
|
18034
|
+
# The definition for a line layer.
|
18035
|
+
# @return [Types::GeospatialLineLayer]
|
18036
|
+
#
|
18037
|
+
# @!attribute [rw] polygon_layer
|
18038
|
+
# The definition for a polygon layer.
|
18039
|
+
# @return [Types::GeospatialPolygonLayer]
|
18040
|
+
#
|
18041
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialLayerDefinition AWS API Documentation
|
18042
|
+
#
|
18043
|
+
class GeospatialLayerDefinition < Struct.new(
|
18044
|
+
:point_layer,
|
18045
|
+
:line_layer,
|
18046
|
+
:polygon_layer)
|
18047
|
+
SENSITIVE = []
|
18048
|
+
include Aws::Structure
|
18049
|
+
end
|
18050
|
+
|
18051
|
+
# The properties for a single geospatial layer.
|
18052
|
+
#
|
18053
|
+
# @!attribute [rw] layer_id
|
18054
|
+
# The ID of the layer.
|
18055
|
+
# @return [String]
|
18056
|
+
#
|
18057
|
+
# @!attribute [rw] layer_type
|
18058
|
+
# The layer type.
|
18059
|
+
# @return [String]
|
18060
|
+
#
|
18061
|
+
# @!attribute [rw] data_source
|
18062
|
+
# The data source for the layer.
|
18063
|
+
# @return [Types::GeospatialDataSourceItem]
|
18064
|
+
#
|
18065
|
+
# @!attribute [rw] label
|
18066
|
+
# The label that is displayed for the layer.
|
18067
|
+
# @return [String]
|
18068
|
+
#
|
18069
|
+
# @!attribute [rw] visibility
|
18070
|
+
# The state of visibility for the layer.
|
18071
|
+
# @return [String]
|
18072
|
+
#
|
18073
|
+
# @!attribute [rw] layer_definition
|
18074
|
+
# The definition properties for a layer.
|
18075
|
+
# @return [Types::GeospatialLayerDefinition]
|
18076
|
+
#
|
18077
|
+
# @!attribute [rw] tooltip
|
18078
|
+
# The display options for the visual tooltip.
|
18079
|
+
# @return [Types::TooltipOptions]
|
18080
|
+
#
|
18081
|
+
# @!attribute [rw] join_definition
|
18082
|
+
# The join definition properties for a layer.
|
18083
|
+
# @return [Types::GeospatialLayerJoinDefinition]
|
18084
|
+
#
|
18085
|
+
# @!attribute [rw] actions
|
18086
|
+
# A list of custom actions for a layer.
|
18087
|
+
# @return [Array<Types::LayerCustomAction>]
|
18088
|
+
#
|
18089
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialLayerItem AWS API Documentation
|
18090
|
+
#
|
18091
|
+
class GeospatialLayerItem < Struct.new(
|
18092
|
+
:layer_id,
|
18093
|
+
:layer_type,
|
18094
|
+
:data_source,
|
18095
|
+
:label,
|
18096
|
+
:visibility,
|
18097
|
+
:layer_definition,
|
18098
|
+
:tooltip,
|
18099
|
+
:join_definition,
|
18100
|
+
:actions)
|
18101
|
+
SENSITIVE = []
|
18102
|
+
include Aws::Structure
|
18103
|
+
end
|
18104
|
+
|
18105
|
+
# The custom actions for a layer.
|
18106
|
+
#
|
18107
|
+
# @!attribute [rw] shape_key_field
|
18108
|
+
# The name of the field or property in the geospatial data source.
|
18109
|
+
# @return [String]
|
18110
|
+
#
|
18111
|
+
# @!attribute [rw] dataset_key_field
|
18112
|
+
# The unaggregated field for a table.
|
18113
|
+
# @return [Types::UnaggregatedField]
|
18114
|
+
#
|
18115
|
+
# @!attribute [rw] color_field
|
18116
|
+
# The geospatial color field for the join definition.
|
18117
|
+
# @return [Types::GeospatialLayerColorField]
|
18118
|
+
#
|
18119
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialLayerJoinDefinition AWS API Documentation
|
18120
|
+
#
|
18121
|
+
class GeospatialLayerJoinDefinition < Struct.new(
|
18122
|
+
:shape_key_field,
|
18123
|
+
:dataset_key_field,
|
18124
|
+
:color_field)
|
18125
|
+
SENSITIVE = []
|
18126
|
+
include Aws::Structure
|
18127
|
+
end
|
18128
|
+
|
18129
|
+
# The map definition that defines map state, map style, and geospatial
|
18130
|
+
# layers.
|
18131
|
+
#
|
18132
|
+
# @!attribute [rw] legend
|
18133
|
+
# The options for the legend setup of a visual.
|
18134
|
+
# @return [Types::LegendOptions]
|
18135
|
+
#
|
18136
|
+
# @!attribute [rw] map_layers
|
18137
|
+
# The geospatial layers to visualize on the map.
|
18138
|
+
# @return [Array<Types::GeospatialLayerItem>]
|
18139
|
+
#
|
18140
|
+
# @!attribute [rw] map_state
|
18141
|
+
# The map state properties for the map.
|
18142
|
+
# @return [Types::GeospatialMapState]
|
18143
|
+
#
|
18144
|
+
# @!attribute [rw] map_style
|
18145
|
+
# The map style properties for the map.
|
18146
|
+
# @return [Types::GeospatialMapStyle]
|
18147
|
+
#
|
18148
|
+
# @!attribute [rw] interactions
|
18149
|
+
# The general visual interactions setup for visual publish options
|
18150
|
+
# @return [Types::VisualInteractionOptions]
|
18151
|
+
#
|
18152
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialLayerMapConfiguration AWS API Documentation
|
18153
|
+
#
|
18154
|
+
class GeospatialLayerMapConfiguration < Struct.new(
|
18155
|
+
:legend,
|
18156
|
+
:map_layers,
|
18157
|
+
:map_state,
|
18158
|
+
:map_style,
|
18159
|
+
:interactions)
|
18160
|
+
SENSITIVE = []
|
18161
|
+
include Aws::Structure
|
18162
|
+
end
|
18163
|
+
|
18164
|
+
# The geospatial Line layer.
|
18165
|
+
#
|
18166
|
+
# @!attribute [rw] style
|
18167
|
+
# The visualization style for a line layer.
|
18168
|
+
# @return [Types::GeospatialLineStyle]
|
18169
|
+
#
|
18170
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialLineLayer AWS API Documentation
|
18171
|
+
#
|
18172
|
+
class GeospatialLineLayer < Struct.new(
|
18173
|
+
:style)
|
18174
|
+
SENSITIVE = []
|
18175
|
+
include Aws::Structure
|
18176
|
+
end
|
18177
|
+
|
18178
|
+
# The visualization style for a line layer.
|
18179
|
+
#
|
18180
|
+
# @!attribute [rw] line_symbol_style
|
18181
|
+
# The symbol style for a line style.
|
18182
|
+
# @return [Types::GeospatialLineSymbolStyle]
|
18183
|
+
#
|
18184
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialLineStyle AWS API Documentation
|
18185
|
+
#
|
18186
|
+
class GeospatialLineStyle < Struct.new(
|
18187
|
+
:line_symbol_style)
|
18188
|
+
SENSITIVE = []
|
18189
|
+
include Aws::Structure
|
18190
|
+
end
|
18191
|
+
|
18192
|
+
# The symbol style for a line layer.
|
18193
|
+
#
|
18194
|
+
# @!attribute [rw] fill_color
|
18195
|
+
# The color and opacity values for the fill color.
|
18196
|
+
# @return [Types::GeospatialColor]
|
18197
|
+
#
|
18198
|
+
# @!attribute [rw] line_width
|
18199
|
+
# The width value for a line.
|
18200
|
+
# @return [Types::GeospatialLineWidth]
|
18201
|
+
#
|
18202
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialLineSymbolStyle AWS API Documentation
|
18203
|
+
#
|
18204
|
+
class GeospatialLineSymbolStyle < Struct.new(
|
18205
|
+
:fill_color,
|
18206
|
+
:line_width)
|
18207
|
+
SENSITIVE = []
|
18208
|
+
include Aws::Structure
|
18209
|
+
end
|
18210
|
+
|
18211
|
+
# The width properties for a line.
|
18212
|
+
#
|
18213
|
+
# @!attribute [rw] line_width
|
18214
|
+
# The positive value for the width of a line.
|
18215
|
+
# @return [Float]
|
18216
|
+
#
|
18217
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialLineWidth AWS API Documentation
|
18218
|
+
#
|
18219
|
+
class GeospatialLineWidth < Struct.new(
|
18220
|
+
:line_width)
|
18221
|
+
SENSITIVE = []
|
18222
|
+
include Aws::Structure
|
18223
|
+
end
|
18224
|
+
|
17460
18225
|
# The aggregated field wells for a geospatial map.
|
17461
18226
|
#
|
17462
18227
|
# @!attribute [rw] geospatial
|
@@ -17549,6 +18314,50 @@ module Aws::QuickSight
|
|
17549
18314
|
include Aws::Structure
|
17550
18315
|
end
|
17551
18316
|
|
18317
|
+
# The map state properties for a map.
|
18318
|
+
#
|
18319
|
+
# @!attribute [rw] bounds
|
18320
|
+
# The bound options (north, south, west, east) of the geospatial
|
18321
|
+
# window options.
|
18322
|
+
# @return [Types::GeospatialCoordinateBounds]
|
18323
|
+
#
|
18324
|
+
# @!attribute [rw] map_navigation
|
18325
|
+
# Enables or disables map navigation for a map.
|
18326
|
+
# @return [String]
|
18327
|
+
#
|
18328
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialMapState AWS API Documentation
|
18329
|
+
#
|
18330
|
+
class GeospatialMapState < Struct.new(
|
18331
|
+
:bounds,
|
18332
|
+
:map_navigation)
|
18333
|
+
SENSITIVE = []
|
18334
|
+
include Aws::Structure
|
18335
|
+
end
|
18336
|
+
|
18337
|
+
# The map style properties for a map.
|
18338
|
+
#
|
18339
|
+
# @!attribute [rw] base_map_style
|
18340
|
+
# The selected base map style.
|
18341
|
+
# @return [String]
|
18342
|
+
#
|
18343
|
+
# @!attribute [rw] background_color
|
18344
|
+
# The background color and opacity values for a map.
|
18345
|
+
# @return [String]
|
18346
|
+
#
|
18347
|
+
# @!attribute [rw] base_map_visibility
|
18348
|
+
# The state of visibility for the base map.
|
18349
|
+
# @return [String]
|
18350
|
+
#
|
18351
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialMapStyle AWS API Documentation
|
18352
|
+
#
|
18353
|
+
class GeospatialMapStyle < Struct.new(
|
18354
|
+
:base_map_style,
|
18355
|
+
:background_color,
|
18356
|
+
:base_map_visibility)
|
18357
|
+
SENSITIVE = []
|
18358
|
+
include Aws::Structure
|
18359
|
+
end
|
18360
|
+
|
17552
18361
|
# The map style options of the geospatial map.
|
17553
18362
|
#
|
17554
18363
|
# @!attribute [rw] base_map_style
|
@@ -17599,6 +18408,10 @@ module Aws::QuickSight
|
|
17599
18408
|
# The list of custom actions that are configured for a visual.
|
17600
18409
|
# @return [Array<Types::VisualCustomAction>]
|
17601
18410
|
#
|
18411
|
+
# @!attribute [rw] visual_content_alt_text
|
18412
|
+
# The alt text for the visual.
|
18413
|
+
# @return [String]
|
18414
|
+
#
|
17602
18415
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialMapVisual AWS API Documentation
|
17603
18416
|
#
|
17604
18417
|
class GeospatialMapVisual < Struct.new(
|
@@ -17607,7 +18420,74 @@ module Aws::QuickSight
|
|
17607
18420
|
:subtitle,
|
17608
18421
|
:chart_configuration,
|
17609
18422
|
:column_hierarchies,
|
17610
|
-
:actions
|
18423
|
+
:actions,
|
18424
|
+
:visual_content_alt_text)
|
18425
|
+
SENSITIVE = []
|
18426
|
+
include Aws::Structure
|
18427
|
+
end
|
18428
|
+
|
18429
|
+
# The properties for the visualization of null data.
|
18430
|
+
#
|
18431
|
+
# @!attribute [rw] symbol_style
|
18432
|
+
# The symbol style for null data.
|
18433
|
+
# @return [Types::GeospatialNullSymbolStyle]
|
18434
|
+
#
|
18435
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialNullDataSettings AWS API Documentation
|
18436
|
+
#
|
18437
|
+
class GeospatialNullDataSettings < Struct.new(
|
18438
|
+
:symbol_style)
|
18439
|
+
SENSITIVE = []
|
18440
|
+
include Aws::Structure
|
18441
|
+
end
|
18442
|
+
|
18443
|
+
# The symbol style for null data.
|
18444
|
+
#
|
18445
|
+
# @!attribute [rw] fill_color
|
18446
|
+
# The color and opacity values for the fill color.
|
18447
|
+
# @return [String]
|
18448
|
+
#
|
18449
|
+
# @!attribute [rw] stroke_color
|
18450
|
+
# The color and opacity values for the stroke color.
|
18451
|
+
# @return [String]
|
18452
|
+
#
|
18453
|
+
# @!attribute [rw] stroke_width
|
18454
|
+
# The width of the border stroke.
|
18455
|
+
# @return [Float]
|
18456
|
+
#
|
18457
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialNullSymbolStyle AWS API Documentation
|
18458
|
+
#
|
18459
|
+
class GeospatialNullSymbolStyle < Struct.new(
|
18460
|
+
:fill_color,
|
18461
|
+
:stroke_color,
|
18462
|
+
:stroke_width)
|
18463
|
+
SENSITIVE = []
|
18464
|
+
include Aws::Structure
|
18465
|
+
end
|
18466
|
+
|
18467
|
+
# The geospatial Point layer.
|
18468
|
+
#
|
18469
|
+
# @!attribute [rw] style
|
18470
|
+
# The visualization style for a point layer.
|
18471
|
+
# @return [Types::GeospatialPointStyle]
|
18472
|
+
#
|
18473
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialPointLayer AWS API Documentation
|
18474
|
+
#
|
18475
|
+
class GeospatialPointLayer < Struct.new(
|
18476
|
+
:style)
|
18477
|
+
SENSITIVE = []
|
18478
|
+
include Aws::Structure
|
18479
|
+
end
|
18480
|
+
|
18481
|
+
# The point style for a point layer.
|
18482
|
+
#
|
18483
|
+
# @!attribute [rw] circle_symbol_style
|
18484
|
+
# The circle symbol style for a point layer.
|
18485
|
+
# @return [Types::GeospatialCircleSymbolStyle]
|
18486
|
+
#
|
18487
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialPointStyle AWS API Documentation
|
18488
|
+
#
|
18489
|
+
class GeospatialPointStyle < Struct.new(
|
18490
|
+
:circle_symbol_style)
|
17611
18491
|
SENSITIVE = []
|
17612
18492
|
include Aws::Structure
|
17613
18493
|
end
|
@@ -17636,6 +18516,91 @@ module Aws::QuickSight
|
|
17636
18516
|
include Aws::Structure
|
17637
18517
|
end
|
17638
18518
|
|
18519
|
+
# The geospatial polygon layer.
|
18520
|
+
#
|
18521
|
+
# @!attribute [rw] style
|
18522
|
+
# The visualization style for a polygon layer.
|
18523
|
+
# @return [Types::GeospatialPolygonStyle]
|
18524
|
+
#
|
18525
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialPolygonLayer AWS API Documentation
|
18526
|
+
#
|
18527
|
+
class GeospatialPolygonLayer < Struct.new(
|
18528
|
+
:style)
|
18529
|
+
SENSITIVE = []
|
18530
|
+
include Aws::Structure
|
18531
|
+
end
|
18532
|
+
|
18533
|
+
# The polygon style for a polygon layer.
|
18534
|
+
#
|
18535
|
+
# @!attribute [rw] polygon_symbol_style
|
18536
|
+
# The polygon symbol style for a polygon layer.
|
18537
|
+
# @return [Types::GeospatialPolygonSymbolStyle]
|
18538
|
+
#
|
18539
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialPolygonStyle AWS API Documentation
|
18540
|
+
#
|
18541
|
+
class GeospatialPolygonStyle < Struct.new(
|
18542
|
+
:polygon_symbol_style)
|
18543
|
+
SENSITIVE = []
|
18544
|
+
include Aws::Structure
|
18545
|
+
end
|
18546
|
+
|
18547
|
+
# The polygon symbol style for a polygon layer.
|
18548
|
+
#
|
18549
|
+
# @!attribute [rw] fill_color
|
18550
|
+
# The color and opacity values for the fill color.
|
18551
|
+
# @return [Types::GeospatialColor]
|
18552
|
+
#
|
18553
|
+
# @!attribute [rw] stroke_color
|
18554
|
+
# The color and opacity values for the stroke color.
|
18555
|
+
# @return [Types::GeospatialColor]
|
18556
|
+
#
|
18557
|
+
# @!attribute [rw] stroke_width
|
18558
|
+
# The width of the border stroke.
|
18559
|
+
# @return [Types::GeospatialLineWidth]
|
18560
|
+
#
|
18561
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialPolygonSymbolStyle AWS API Documentation
|
18562
|
+
#
|
18563
|
+
class GeospatialPolygonSymbolStyle < Struct.new(
|
18564
|
+
:fill_color,
|
18565
|
+
:stroke_color,
|
18566
|
+
:stroke_width)
|
18567
|
+
SENSITIVE = []
|
18568
|
+
include Aws::Structure
|
18569
|
+
end
|
18570
|
+
|
18571
|
+
# The definition for a solid color.
|
18572
|
+
#
|
18573
|
+
# @!attribute [rw] color
|
18574
|
+
# The color and opacity values for the color.
|
18575
|
+
# @return [String]
|
18576
|
+
#
|
18577
|
+
# @!attribute [rw] state
|
18578
|
+
# Enables and disables the view state of the color.
|
18579
|
+
# @return [String]
|
18580
|
+
#
|
18581
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialSolidColor AWS API Documentation
|
18582
|
+
#
|
18583
|
+
class GeospatialSolidColor < Struct.new(
|
18584
|
+
:color,
|
18585
|
+
:state)
|
18586
|
+
SENSITIVE = []
|
18587
|
+
include Aws::Structure
|
18588
|
+
end
|
18589
|
+
|
18590
|
+
# The source properties for a geospatial static file.
|
18591
|
+
#
|
18592
|
+
# @!attribute [rw] static_file_id
|
18593
|
+
# The ID of the static file.
|
18594
|
+
# @return [String]
|
18595
|
+
#
|
18596
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialStaticFileSource AWS API Documentation
|
18597
|
+
#
|
18598
|
+
class GeospatialStaticFileSource < Struct.new(
|
18599
|
+
:static_file_id)
|
18600
|
+
SENSITIVE = []
|
18601
|
+
include Aws::Structure
|
18602
|
+
end
|
18603
|
+
|
17639
18604
|
# The window options of the geospatial map visual.
|
17640
18605
|
#
|
17641
18606
|
# @!attribute [rw] bounds
|
@@ -18336,6 +19301,10 @@ module Aws::QuickSight
|
|
18336
19301
|
# The list of custom actions that are configured for a visual.
|
18337
19302
|
# @return [Array<Types::VisualCustomAction>]
|
18338
19303
|
#
|
19304
|
+
# @!attribute [rw] visual_content_alt_text
|
19305
|
+
# The alt text for the visual.
|
19306
|
+
# @return [String]
|
19307
|
+
#
|
18339
19308
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/HeatMapVisual AWS API Documentation
|
18340
19309
|
#
|
18341
19310
|
class HeatMapVisual < Struct.new(
|
@@ -18344,7 +19313,8 @@ module Aws::QuickSight
|
|
18344
19313
|
:subtitle,
|
18345
19314
|
:chart_configuration,
|
18346
19315
|
:column_hierarchies,
|
18347
|
-
:actions
|
19316
|
+
:actions,
|
19317
|
+
:visual_content_alt_text)
|
18348
19318
|
SENSITIVE = []
|
18349
19319
|
include Aws::Structure
|
18350
19320
|
end
|
@@ -18493,6 +19463,10 @@ module Aws::QuickSight
|
|
18493
19463
|
# The list of custom actions that are configured for a visual.
|
18494
19464
|
# @return [Array<Types::VisualCustomAction>]
|
18495
19465
|
#
|
19466
|
+
# @!attribute [rw] visual_content_alt_text
|
19467
|
+
# The alt text for the visual.
|
19468
|
+
# @return [String]
|
19469
|
+
#
|
18496
19470
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/HistogramVisual AWS API Documentation
|
18497
19471
|
#
|
18498
19472
|
class HistogramVisual < Struct.new(
|
@@ -18500,7 +19474,8 @@ module Aws::QuickSight
|
|
18500
19474
|
:title,
|
18501
19475
|
:subtitle,
|
18502
19476
|
:chart_configuration,
|
18503
|
-
:actions
|
19477
|
+
:actions,
|
19478
|
+
:visual_content_alt_text)
|
18504
19479
|
SENSITIVE = []
|
18505
19480
|
include Aws::Structure
|
18506
19481
|
end
|
@@ -18644,6 +19619,112 @@ module Aws::QuickSight
|
|
18644
19619
|
include Aws::Structure
|
18645
19620
|
end
|
18646
19621
|
|
19622
|
+
# A custom action defined on an image.
|
19623
|
+
#
|
19624
|
+
# @!attribute [rw] custom_action_id
|
19625
|
+
# The ID of the custom action.
|
19626
|
+
# @return [String]
|
19627
|
+
#
|
19628
|
+
# @!attribute [rw] name
|
19629
|
+
# The name of the custom action.
|
19630
|
+
# @return [String]
|
19631
|
+
#
|
19632
|
+
# @!attribute [rw] status
|
19633
|
+
# The status of the custom action.
|
19634
|
+
# @return [String]
|
19635
|
+
#
|
19636
|
+
# @!attribute [rw] trigger
|
19637
|
+
# The trigger of the `VisualCustomAction`.
|
19638
|
+
#
|
19639
|
+
# Valid values are defined as follows:
|
19640
|
+
#
|
19641
|
+
# * `CLICK`: Initiates a custom action by a left pointer click on a
|
19642
|
+
# data point.
|
19643
|
+
#
|
19644
|
+
# * `MENU`: Initiates a custom action by right pointer click from the
|
19645
|
+
# menu.
|
19646
|
+
# @return [String]
|
19647
|
+
#
|
19648
|
+
# @!attribute [rw] action_operations
|
19649
|
+
# A list of `ImageCustomActionOperations`.
|
19650
|
+
#
|
19651
|
+
# This is a union type structure. For this structure to be valid, only
|
19652
|
+
# one of the attributes can be defined.
|
19653
|
+
# @return [Array<Types::ImageCustomActionOperation>]
|
19654
|
+
#
|
19655
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ImageCustomAction AWS API Documentation
|
19656
|
+
#
|
19657
|
+
class ImageCustomAction < Struct.new(
|
19658
|
+
:custom_action_id,
|
19659
|
+
:name,
|
19660
|
+
:status,
|
19661
|
+
:trigger,
|
19662
|
+
:action_operations)
|
19663
|
+
SENSITIVE = []
|
19664
|
+
include Aws::Structure
|
19665
|
+
end
|
19666
|
+
|
19667
|
+
# The operation that is defined by the custom action.
|
19668
|
+
#
|
19669
|
+
# This is a union type structure. For this structure to be valid, only
|
19670
|
+
# one of the attributes can be defined.
|
19671
|
+
#
|
19672
|
+
# @!attribute [rw] navigation_operation
|
19673
|
+
# The navigation operation that navigates between different sheets in
|
19674
|
+
# the same analysis.
|
19675
|
+
#
|
19676
|
+
# This is a union type structure. For this structure to be valid, only
|
19677
|
+
# one of the attributes can be defined.
|
19678
|
+
# @return [Types::CustomActionNavigationOperation]
|
19679
|
+
#
|
19680
|
+
# @!attribute [rw] url_operation
|
19681
|
+
# The URL operation that opens a link to another webpage.
|
19682
|
+
# @return [Types::CustomActionURLOperation]
|
19683
|
+
#
|
19684
|
+
# @!attribute [rw] set_parameters_operation
|
19685
|
+
# The set parameter operation that sets parameters in custom action.
|
19686
|
+
# @return [Types::CustomActionSetParametersOperation]
|
19687
|
+
#
|
19688
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ImageCustomActionOperation AWS API Documentation
|
19689
|
+
#
|
19690
|
+
class ImageCustomActionOperation < Struct.new(
|
19691
|
+
:navigation_operation,
|
19692
|
+
:url_operation,
|
19693
|
+
:set_parameters_operation)
|
19694
|
+
SENSITIVE = []
|
19695
|
+
include Aws::Structure
|
19696
|
+
end
|
19697
|
+
|
19698
|
+
# The general image interactions setup for image publish options.
|
19699
|
+
#
|
19700
|
+
# @!attribute [rw] image_menu_option
|
19701
|
+
# The menu options for the image.
|
19702
|
+
# @return [Types::ImageMenuOption]
|
19703
|
+
#
|
19704
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ImageInteractionOptions AWS API Documentation
|
19705
|
+
#
|
19706
|
+
class ImageInteractionOptions < Struct.new(
|
19707
|
+
:image_menu_option)
|
19708
|
+
SENSITIVE = []
|
19709
|
+
include Aws::Structure
|
19710
|
+
end
|
19711
|
+
|
19712
|
+
# The menu options for the interactions of an image.
|
19713
|
+
#
|
19714
|
+
# @!attribute [rw] availability_status
|
19715
|
+
# The availability status of the image menu. If the value of this
|
19716
|
+
# property is set to `ENABLED`, dashboard readers can interact with
|
19717
|
+
# the image menu.
|
19718
|
+
# @return [String]
|
19719
|
+
#
|
19720
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ImageMenuOption AWS API Documentation
|
19721
|
+
#
|
19722
|
+
class ImageMenuOption < Struct.new(
|
19723
|
+
:availability_status)
|
19724
|
+
SENSITIVE = []
|
19725
|
+
include Aws::Structure
|
19726
|
+
end
|
19727
|
+
|
18647
19728
|
# The image set.
|
18648
19729
|
#
|
18649
19730
|
# @!attribute [rw] original
|
@@ -18711,6 +19792,25 @@ module Aws::QuickSight
|
|
18711
19792
|
class Unknown < ImageSource; end
|
18712
19793
|
end
|
18713
19794
|
|
19795
|
+
# A static file that contains an image.
|
19796
|
+
#
|
19797
|
+
# @!attribute [rw] static_file_id
|
19798
|
+
# The ID of the static file that contains an image.
|
19799
|
+
# @return [String]
|
19800
|
+
#
|
19801
|
+
# @!attribute [rw] source
|
19802
|
+
# The source of the image static file.
|
19803
|
+
# @return [Types::StaticFileSource]
|
19804
|
+
#
|
19805
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ImageStaticFile AWS API Documentation
|
19806
|
+
#
|
19807
|
+
class ImageStaticFile < Struct.new(
|
19808
|
+
:static_file_id,
|
19809
|
+
:source)
|
19810
|
+
SENSITIVE = []
|
19811
|
+
include Aws::Structure
|
19812
|
+
end
|
19813
|
+
|
18714
19814
|
# The incremental refresh configuration for a dataset.
|
18715
19815
|
#
|
18716
19816
|
# @!attribute [rw] lookback_window
|
@@ -18890,6 +19990,10 @@ module Aws::QuickSight
|
|
18890
19990
|
# The dataset that is used in the insight visual.
|
18891
19991
|
# @return [String]
|
18892
19992
|
#
|
19993
|
+
# @!attribute [rw] visual_content_alt_text
|
19994
|
+
# The alt text for the visual.
|
19995
|
+
# @return [String]
|
19996
|
+
#
|
18893
19997
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/InsightVisual AWS API Documentation
|
18894
19998
|
#
|
18895
19999
|
class InsightVisual < Struct.new(
|
@@ -18898,7 +20002,8 @@ module Aws::QuickSight
|
|
18898
20002
|
:subtitle,
|
18899
20003
|
:insight_configuration,
|
18900
20004
|
:actions,
|
18901
|
-
:data_set_identifier
|
20005
|
+
:data_set_identifier,
|
20006
|
+
:visual_content_alt_text)
|
18902
20007
|
SENSITIVE = []
|
18903
20008
|
include Aws::Structure
|
18904
20009
|
end
|
@@ -19561,6 +20666,10 @@ module Aws::QuickSight
|
|
19561
20666
|
# The column hierarchy that is used during drill-downs and drill-ups.
|
19562
20667
|
# @return [Array<Types::ColumnHierarchy>]
|
19563
20668
|
#
|
20669
|
+
# @!attribute [rw] visual_content_alt_text
|
20670
|
+
# The alt text for the visual.
|
20671
|
+
# @return [String]
|
20672
|
+
#
|
19564
20673
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/KPIVisual AWS API Documentation
|
19565
20674
|
#
|
19566
20675
|
class KPIVisual < Struct.new(
|
@@ -19570,7 +20679,8 @@ module Aws::QuickSight
|
|
19570
20679
|
:chart_configuration,
|
19571
20680
|
:conditional_formatting,
|
19572
20681
|
:actions,
|
19573
|
-
:column_hierarchies
|
20682
|
+
:column_hierarchies,
|
20683
|
+
:visual_content_alt_text)
|
19574
20684
|
SENSITIVE = []
|
19575
20685
|
include Aws::Structure
|
19576
20686
|
end
|
@@ -19627,6 +20737,128 @@ module Aws::QuickSight
|
|
19627
20737
|
include Aws::Structure
|
19628
20738
|
end
|
19629
20739
|
|
20740
|
+
# A layer custom action.
|
20741
|
+
#
|
20742
|
+
# @!attribute [rw] custom_action_id
|
20743
|
+
# The ID of the custom action.
|
20744
|
+
# @return [String]
|
20745
|
+
#
|
20746
|
+
# @!attribute [rw] name
|
20747
|
+
# The name of the custom action.
|
20748
|
+
# @return [String]
|
20749
|
+
#
|
20750
|
+
# @!attribute [rw] status
|
20751
|
+
# The status of the `LayerCustomAction`.
|
20752
|
+
# @return [String]
|
20753
|
+
#
|
20754
|
+
# @!attribute [rw] trigger
|
20755
|
+
# The trigger of the `LayerCustomAction`.
|
20756
|
+
#
|
20757
|
+
# Valid values are defined as follows:
|
20758
|
+
#
|
20759
|
+
# * `DATA_POINT_CLICK`: Initiates a custom action by a left pointer
|
20760
|
+
# click on a data point.
|
20761
|
+
#
|
20762
|
+
# * `DATA_POINT_MENU`: Initiates a custom action by right pointer
|
20763
|
+
# click from the menu.
|
20764
|
+
# @return [String]
|
20765
|
+
#
|
20766
|
+
# @!attribute [rw] action_operations
|
20767
|
+
# A list of `LayerCustomActionOperations`.
|
20768
|
+
#
|
20769
|
+
# This is a union type structure. For this structure to be valid, only
|
20770
|
+
# one of the attributes can be defined.
|
20771
|
+
# @return [Array<Types::LayerCustomActionOperation>]
|
20772
|
+
#
|
20773
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/LayerCustomAction AWS API Documentation
|
20774
|
+
#
|
20775
|
+
class LayerCustomAction < Struct.new(
|
20776
|
+
:custom_action_id,
|
20777
|
+
:name,
|
20778
|
+
:status,
|
20779
|
+
:trigger,
|
20780
|
+
:action_operations)
|
20781
|
+
SENSITIVE = []
|
20782
|
+
include Aws::Structure
|
20783
|
+
end
|
20784
|
+
|
20785
|
+
# The operation that is defined by the custom action.
|
20786
|
+
#
|
20787
|
+
# This is a union type structure. For this structure to be valid, only
|
20788
|
+
# one of the attributes can be defined.
|
20789
|
+
#
|
20790
|
+
# @!attribute [rw] filter_operation
|
20791
|
+
# The filter operation that filters data included in a visual or in an
|
20792
|
+
# entire sheet.
|
20793
|
+
# @return [Types::CustomActionFilterOperation]
|
20794
|
+
#
|
20795
|
+
# @!attribute [rw] navigation_operation
|
20796
|
+
# The navigation operation that navigates between different sheets in
|
20797
|
+
# the same analysis.
|
20798
|
+
#
|
20799
|
+
# This is a union type structure. For this structure to be valid, only
|
20800
|
+
# one of the attributes can be defined.
|
20801
|
+
# @return [Types::CustomActionNavigationOperation]
|
20802
|
+
#
|
20803
|
+
# @!attribute [rw] url_operation
|
20804
|
+
# The URL operation that opens a link to another webpage.
|
20805
|
+
# @return [Types::CustomActionURLOperation]
|
20806
|
+
#
|
20807
|
+
# @!attribute [rw] set_parameters_operation
|
20808
|
+
# The set parameter operation that sets parameters in custom action.
|
20809
|
+
# @return [Types::CustomActionSetParametersOperation]
|
20810
|
+
#
|
20811
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/LayerCustomActionOperation AWS API Documentation
|
20812
|
+
#
|
20813
|
+
class LayerCustomActionOperation < Struct.new(
|
20814
|
+
:filter_operation,
|
20815
|
+
:navigation_operation,
|
20816
|
+
:url_operation,
|
20817
|
+
:set_parameters_operation)
|
20818
|
+
SENSITIVE = []
|
20819
|
+
include Aws::Structure
|
20820
|
+
end
|
20821
|
+
|
20822
|
+
# A layer map visual.
|
20823
|
+
#
|
20824
|
+
# @!attribute [rw] visual_id
|
20825
|
+
# The ID of the visual.
|
20826
|
+
# @return [String]
|
20827
|
+
#
|
20828
|
+
# @!attribute [rw] title
|
20829
|
+
# The title label options for a visual.
|
20830
|
+
# @return [Types::VisualTitleLabelOptions]
|
20831
|
+
#
|
20832
|
+
# @!attribute [rw] subtitle
|
20833
|
+
# The subtitle label options for a visual.
|
20834
|
+
# @return [Types::VisualSubtitleLabelOptions]
|
20835
|
+
#
|
20836
|
+
# @!attribute [rw] chart_configuration
|
20837
|
+
# The configuration settings of the visual.
|
20838
|
+
# @return [Types::GeospatialLayerMapConfiguration]
|
20839
|
+
#
|
20840
|
+
# @!attribute [rw] data_set_identifier
|
20841
|
+
# The dataset that is used to create the layer map visual. You can't
|
20842
|
+
# create a visual without a dataset.
|
20843
|
+
# @return [String]
|
20844
|
+
#
|
20845
|
+
# @!attribute [rw] visual_content_alt_text
|
20846
|
+
# The alt text for the visual.
|
20847
|
+
# @return [String]
|
20848
|
+
#
|
20849
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/LayerMapVisual AWS API Documentation
|
20850
|
+
#
|
20851
|
+
class LayerMapVisual < Struct.new(
|
20852
|
+
:visual_id,
|
20853
|
+
:title,
|
20854
|
+
:subtitle,
|
20855
|
+
:chart_configuration,
|
20856
|
+
:data_set_identifier,
|
20857
|
+
:visual_content_alt_text)
|
20858
|
+
SENSITIVE = []
|
20859
|
+
include Aws::Structure
|
20860
|
+
end
|
20861
|
+
|
19630
20862
|
# A `Layout` defines the placement of elements within a sheet.
|
19631
20863
|
#
|
19632
20864
|
# For more information, see [Types of layout][1] in the *Amazon
|
@@ -19719,6 +20951,10 @@ module Aws::QuickSight
|
|
19719
20951
|
# is used when rendering.
|
19720
20952
|
# @return [String]
|
19721
20953
|
#
|
20954
|
+
# @!attribute [rw] value_font_configuration
|
20955
|
+
# Configures the display properties of the given text.
|
20956
|
+
# @return [Types::FontConfiguration]
|
20957
|
+
#
|
19722
20958
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/LegendOptions AWS API Documentation
|
19723
20959
|
#
|
19724
20960
|
class LegendOptions < Struct.new(
|
@@ -19726,7 +20962,8 @@ module Aws::QuickSight
|
|
19726
20962
|
:title,
|
19727
20963
|
:position,
|
19728
20964
|
:width,
|
19729
|
-
:height
|
20965
|
+
:height,
|
20966
|
+
:value_font_configuration)
|
19730
20967
|
SENSITIVE = []
|
19731
20968
|
include Aws::Structure
|
19732
20969
|
end
|
@@ -20115,6 +21352,10 @@ module Aws::QuickSight
|
|
20115
21352
|
# The column hierarchy that is used during drill-downs and drill-ups.
|
20116
21353
|
# @return [Array<Types::ColumnHierarchy>]
|
20117
21354
|
#
|
21355
|
+
# @!attribute [rw] visual_content_alt_text
|
21356
|
+
# The alt text for the visual.
|
21357
|
+
# @return [String]
|
21358
|
+
#
|
20118
21359
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/LineChartVisual AWS API Documentation
|
20119
21360
|
#
|
20120
21361
|
class LineChartVisual < Struct.new(
|
@@ -20123,7 +21364,8 @@ module Aws::QuickSight
|
|
20123
21364
|
:subtitle,
|
20124
21365
|
:chart_configuration,
|
20125
21366
|
:actions,
|
20126
|
-
:column_hierarchies
|
21367
|
+
:column_hierarchies,
|
21368
|
+
:visual_content_alt_text)
|
20127
21369
|
SENSITIVE = []
|
20128
21370
|
include Aws::Structure
|
20129
21371
|
end
|
@@ -22683,6 +23925,15 @@ module Aws::QuickSight
|
|
22683
23925
|
# An error that occurred when the namespace was created.
|
22684
23926
|
# @return [Types::NamespaceError]
|
22685
23927
|
#
|
23928
|
+
# @!attribute [rw] iam_identity_center_application_arn
|
23929
|
+
# The Amazon Resource Name (ARN) for the IAM Identity Center
|
23930
|
+
# application.
|
23931
|
+
# @return [String]
|
23932
|
+
#
|
23933
|
+
# @!attribute [rw] iam_identity_center_instance_arn
|
23934
|
+
# The Amazon Resource Name (ARN) for the IAM Identity Center instance.
|
23935
|
+
# @return [String]
|
23936
|
+
#
|
22686
23937
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/NamespaceInfoV2 AWS API Documentation
|
22687
23938
|
#
|
22688
23939
|
class NamespaceInfoV2 < Struct.new(
|
@@ -22691,7 +23942,9 @@ module Aws::QuickSight
|
|
22691
23942
|
:capacity_region,
|
22692
23943
|
:creation_status,
|
22693
23944
|
:identity_store,
|
22694
|
-
:namespace_error
|
23945
|
+
:namespace_error,
|
23946
|
+
:iam_identity_center_application_arn,
|
23947
|
+
:iam_identity_center_instance_arn)
|
22695
23948
|
SENSITIVE = []
|
22696
23949
|
include Aws::Structure
|
22697
23950
|
end
|
@@ -24239,6 +25492,10 @@ module Aws::QuickSight
|
|
24239
25492
|
# The column hierarchy that is used during drill-downs and drill-ups.
|
24240
25493
|
# @return [Array<Types::ColumnHierarchy>]
|
24241
25494
|
#
|
25495
|
+
# @!attribute [rw] visual_content_alt_text
|
25496
|
+
# The alt text for the visual.
|
25497
|
+
# @return [String]
|
25498
|
+
#
|
24242
25499
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PieChartVisual AWS API Documentation
|
24243
25500
|
#
|
24244
25501
|
class PieChartVisual < Struct.new(
|
@@ -24247,7 +25504,8 @@ module Aws::QuickSight
|
|
24247
25504
|
:subtitle,
|
24248
25505
|
:chart_configuration,
|
24249
25506
|
:actions,
|
24250
|
-
:column_hierarchies
|
25507
|
+
:column_hierarchies,
|
25508
|
+
:visual_content_alt_text)
|
24251
25509
|
SENSITIVE = []
|
24252
25510
|
include Aws::Structure
|
24253
25511
|
end
|
@@ -24790,6 +26048,10 @@ module Aws::QuickSight
|
|
24790
26048
|
# The list of custom actions that are configured for a visual.
|
24791
26049
|
# @return [Array<Types::VisualCustomAction>]
|
24792
26050
|
#
|
26051
|
+
# @!attribute [rw] visual_content_alt_text
|
26052
|
+
# The alt text for the visual.
|
26053
|
+
# @return [String]
|
26054
|
+
#
|
24793
26055
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PivotTableVisual AWS API Documentation
|
24794
26056
|
#
|
24795
26057
|
class PivotTableVisual < Struct.new(
|
@@ -24798,7 +26060,8 @@ module Aws::QuickSight
|
|
24798
26060
|
:subtitle,
|
24799
26061
|
:chart_configuration,
|
24800
26062
|
:conditional_formatting,
|
24801
|
-
:actions
|
26063
|
+
:actions,
|
26064
|
+
:visual_content_alt_text)
|
24802
26065
|
SENSITIVE = []
|
24803
26066
|
include Aws::Structure
|
24804
26067
|
end
|
@@ -24852,6 +26115,181 @@ module Aws::QuickSight
|
|
24852
26115
|
include Aws::Structure
|
24853
26116
|
end
|
24854
26117
|
|
26118
|
+
# A flexible visualization type that allows engineers to create new
|
26119
|
+
# custom charts in Amazon QuickSight.
|
26120
|
+
#
|
26121
|
+
# @!attribute [rw] visual_id
|
26122
|
+
# The ID of the visual that you want to use.
|
26123
|
+
# @return [String]
|
26124
|
+
#
|
26125
|
+
# @!attribute [rw] plugin_arn
|
26126
|
+
# The Amazon Resource Name (ARN) that reflects the plugin and version.
|
26127
|
+
# @return [String]
|
26128
|
+
#
|
26129
|
+
# @!attribute [rw] title
|
26130
|
+
# The title label options for a visual.
|
26131
|
+
# @return [Types::VisualTitleLabelOptions]
|
26132
|
+
#
|
26133
|
+
# @!attribute [rw] subtitle
|
26134
|
+
# The subtitle label options for a visual.
|
26135
|
+
# @return [Types::VisualSubtitleLabelOptions]
|
26136
|
+
#
|
26137
|
+
# @!attribute [rw] chart_configuration
|
26138
|
+
# A description of the plugin field wells and their persisted
|
26139
|
+
# properties.
|
26140
|
+
# @return [Types::PluginVisualConfiguration]
|
26141
|
+
#
|
26142
|
+
# @!attribute [rw] visual_content_alt_text
|
26143
|
+
# The alt text for the visual.
|
26144
|
+
# @return [String]
|
26145
|
+
#
|
26146
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PluginVisual AWS API Documentation
|
26147
|
+
#
|
26148
|
+
class PluginVisual < Struct.new(
|
26149
|
+
:visual_id,
|
26150
|
+
:plugin_arn,
|
26151
|
+
:title,
|
26152
|
+
:subtitle,
|
26153
|
+
:chart_configuration,
|
26154
|
+
:visual_content_alt_text)
|
26155
|
+
SENSITIVE = []
|
26156
|
+
include Aws::Structure
|
26157
|
+
end
|
26158
|
+
|
26159
|
+
# The plugin visual configuration. This includes the field wells,
|
26160
|
+
# sorting options, and persisted options of the plugin visual.
|
26161
|
+
#
|
26162
|
+
# @!attribute [rw] field_wells
|
26163
|
+
# The field wells configuration of the plugin visual.
|
26164
|
+
# @return [Array<Types::PluginVisualFieldWell>]
|
26165
|
+
#
|
26166
|
+
# @!attribute [rw] visual_options
|
26167
|
+
# The persisted properties of the plugin visual.
|
26168
|
+
# @return [Types::PluginVisualOptions]
|
26169
|
+
#
|
26170
|
+
# @!attribute [rw] sort_configuration
|
26171
|
+
# The sort configuration of the plugin visual.
|
26172
|
+
# @return [Types::PluginVisualSortConfiguration]
|
26173
|
+
#
|
26174
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PluginVisualConfiguration AWS API Documentation
|
26175
|
+
#
|
26176
|
+
class PluginVisualConfiguration < Struct.new(
|
26177
|
+
:field_wells,
|
26178
|
+
:visual_options,
|
26179
|
+
:sort_configuration)
|
26180
|
+
SENSITIVE = []
|
26181
|
+
include Aws::Structure
|
26182
|
+
end
|
26183
|
+
|
26184
|
+
# A collection of field wells for a plugin visual.
|
26185
|
+
#
|
26186
|
+
# @!attribute [rw] axis_name
|
26187
|
+
# The semantic axis name for the field well.
|
26188
|
+
# @return [String]
|
26189
|
+
#
|
26190
|
+
# @!attribute [rw] dimensions
|
26191
|
+
# A list of dimensions for the field well.
|
26192
|
+
# @return [Array<Types::DimensionField>]
|
26193
|
+
#
|
26194
|
+
# @!attribute [rw] measures
|
26195
|
+
# A list of measures that exist in the field well.
|
26196
|
+
# @return [Array<Types::MeasureField>]
|
26197
|
+
#
|
26198
|
+
# @!attribute [rw] unaggregated
|
26199
|
+
# A list of unaggregated fields that exist in the field well.
|
26200
|
+
# @return [Array<Types::UnaggregatedField>]
|
26201
|
+
#
|
26202
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PluginVisualFieldWell AWS API Documentation
|
26203
|
+
#
|
26204
|
+
class PluginVisualFieldWell < Struct.new(
|
26205
|
+
:axis_name,
|
26206
|
+
:dimensions,
|
26207
|
+
:measures,
|
26208
|
+
:unaggregated)
|
26209
|
+
SENSITIVE = []
|
26210
|
+
include Aws::Structure
|
26211
|
+
end
|
26212
|
+
|
26213
|
+
# A query limits configuration.
|
26214
|
+
#
|
26215
|
+
# @!attribute [rw] items_limit
|
26216
|
+
# Determines how many values are be fetched at once.
|
26217
|
+
# @return [Integer]
|
26218
|
+
#
|
26219
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PluginVisualItemsLimitConfiguration AWS API Documentation
|
26220
|
+
#
|
26221
|
+
class PluginVisualItemsLimitConfiguration < Struct.new(
|
26222
|
+
:items_limit)
|
26223
|
+
SENSITIVE = []
|
26224
|
+
include Aws::Structure
|
26225
|
+
end
|
26226
|
+
|
26227
|
+
# The options and persisted properties for the plugin visual.
|
26228
|
+
#
|
26229
|
+
# @!attribute [rw] visual_properties
|
26230
|
+
# The persisted properties and their values.
|
26231
|
+
# @return [Array<Types::PluginVisualProperty>]
|
26232
|
+
#
|
26233
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PluginVisualOptions AWS API Documentation
|
26234
|
+
#
|
26235
|
+
class PluginVisualOptions < Struct.new(
|
26236
|
+
:visual_properties)
|
26237
|
+
SENSITIVE = []
|
26238
|
+
include Aws::Structure
|
26239
|
+
end
|
26240
|
+
|
26241
|
+
# The key value pair of the persisted property.
|
26242
|
+
#
|
26243
|
+
# @!attribute [rw] name
|
26244
|
+
# The name of the plugin visual property.
|
26245
|
+
# @return [String]
|
26246
|
+
#
|
26247
|
+
# @!attribute [rw] value
|
26248
|
+
# The value of the plugin visual property.
|
26249
|
+
# @return [String]
|
26250
|
+
#
|
26251
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PluginVisualProperty AWS API Documentation
|
26252
|
+
#
|
26253
|
+
class PluginVisualProperty < Struct.new(
|
26254
|
+
:name,
|
26255
|
+
:value)
|
26256
|
+
SENSITIVE = []
|
26257
|
+
include Aws::Structure
|
26258
|
+
end
|
26259
|
+
|
26260
|
+
# Determines how the plugin visual sorts the data during query.
|
26261
|
+
#
|
26262
|
+
# @!attribute [rw] plugin_visual_table_query_sort
|
26263
|
+
# The table query sorting options for the plugin visual.
|
26264
|
+
# @return [Types::PluginVisualTableQuerySort]
|
26265
|
+
#
|
26266
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PluginVisualSortConfiguration AWS API Documentation
|
26267
|
+
#
|
26268
|
+
class PluginVisualSortConfiguration < Struct.new(
|
26269
|
+
:plugin_visual_table_query_sort)
|
26270
|
+
SENSITIVE = []
|
26271
|
+
include Aws::Structure
|
26272
|
+
end
|
26273
|
+
|
26274
|
+
# The table query sorting options for the plugin visual.
|
26275
|
+
#
|
26276
|
+
# @!attribute [rw] row_sort
|
26277
|
+
# Determines how data is sorted in the response.
|
26278
|
+
# @return [Array<Types::FieldSortOptions>]
|
26279
|
+
#
|
26280
|
+
# @!attribute [rw] items_limit_configuration
|
26281
|
+
# The maximum amount of data to be returned by a query.
|
26282
|
+
# @return [Types::PluginVisualItemsLimitConfiguration]
|
26283
|
+
#
|
26284
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PluginVisualTableQuerySort AWS API Documentation
|
26285
|
+
#
|
26286
|
+
class PluginVisualTableQuerySort < Struct.new(
|
26287
|
+
:row_sort,
|
26288
|
+
:items_limit_configuration)
|
26289
|
+
SENSITIVE = []
|
26290
|
+
include Aws::Structure
|
26291
|
+
end
|
26292
|
+
|
24855
26293
|
# The parameters for PostgreSQL.
|
24856
26294
|
#
|
24857
26295
|
# @!attribute [rw] host
|
@@ -24921,6 +26359,66 @@ module Aws::QuickSight
|
|
24921
26359
|
include Aws::Structure
|
24922
26360
|
end
|
24923
26361
|
|
26362
|
+
# @!attribute [rw] aws_account_id
|
26363
|
+
# The ID of the Amazon Web Services account that the user wants to
|
26364
|
+
# execute Predict QA results in.
|
26365
|
+
# @return [String]
|
26366
|
+
#
|
26367
|
+
# @!attribute [rw] query_text
|
26368
|
+
# The query text to be used to predict QA results.
|
26369
|
+
# @return [String]
|
26370
|
+
#
|
26371
|
+
# @!attribute [rw] include_quick_sight_q_index
|
26372
|
+
# Indicates whether Q indicies are included or excluded.
|
26373
|
+
# @return [String]
|
26374
|
+
#
|
26375
|
+
# @!attribute [rw] include_generated_answer
|
26376
|
+
# Indicates whether generated answers are included or excluded.
|
26377
|
+
# @return [String]
|
26378
|
+
#
|
26379
|
+
# @!attribute [rw] max_topics_to_consider
|
26380
|
+
# The number of maximum topics to be considered to predict QA results.
|
26381
|
+
# @return [Integer]
|
26382
|
+
#
|
26383
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PredictQAResultsRequest AWS API Documentation
|
26384
|
+
#
|
26385
|
+
class PredictQAResultsRequest < Struct.new(
|
26386
|
+
:aws_account_id,
|
26387
|
+
:query_text,
|
26388
|
+
:include_quick_sight_q_index,
|
26389
|
+
:include_generated_answer,
|
26390
|
+
:max_topics_to_consider)
|
26391
|
+
SENSITIVE = [:query_text]
|
26392
|
+
include Aws::Structure
|
26393
|
+
end
|
26394
|
+
|
26395
|
+
# @!attribute [rw] primary_result
|
26396
|
+
# The primary visual response.
|
26397
|
+
# @return [Types::QAResult]
|
26398
|
+
#
|
26399
|
+
# @!attribute [rw] additional_results
|
26400
|
+
# Additional visual responses.
|
26401
|
+
# @return [Array<Types::QAResult>]
|
26402
|
+
#
|
26403
|
+
# @!attribute [rw] request_id
|
26404
|
+
# The Amazon Web Services request ID for this operation.
|
26405
|
+
# @return [String]
|
26406
|
+
#
|
26407
|
+
# @!attribute [rw] status
|
26408
|
+
# The HTTP status of the request.
|
26409
|
+
# @return [Integer]
|
26410
|
+
#
|
26411
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PredictQAResultsResponse AWS API Documentation
|
26412
|
+
#
|
26413
|
+
class PredictQAResultsResponse < Struct.new(
|
26414
|
+
:primary_result,
|
26415
|
+
:additional_results,
|
26416
|
+
:request_id,
|
26417
|
+
:status)
|
26418
|
+
SENSITIVE = []
|
26419
|
+
include Aws::Structure
|
26420
|
+
end
|
26421
|
+
|
24924
26422
|
# The parameters for Presto.
|
24925
26423
|
#
|
24926
26424
|
# @!attribute [rw] host
|
@@ -25014,6 +26512,31 @@ module Aws::QuickSight
|
|
25014
26512
|
include Aws::Structure
|
25015
26513
|
end
|
25016
26514
|
|
26515
|
+
# The QA result that is made from the `DashboardVisual` or
|
26516
|
+
# `GeneratedAnswer`.
|
26517
|
+
#
|
26518
|
+
# @!attribute [rw] result_type
|
26519
|
+
# The type of QA result.
|
26520
|
+
# @return [String]
|
26521
|
+
#
|
26522
|
+
# @!attribute [rw] dashboard_visual
|
26523
|
+
# The representation of a dashboard visual result.
|
26524
|
+
# @return [Types::DashboardVisualResult]
|
26525
|
+
#
|
26526
|
+
# @!attribute [rw] generated_answer
|
26527
|
+
# The representation of a generated answer result.
|
26528
|
+
# @return [Types::GeneratedAnswerResult]
|
26529
|
+
#
|
26530
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/QAResult AWS API Documentation
|
26531
|
+
#
|
26532
|
+
class QAResult < Struct.new(
|
26533
|
+
:result_type,
|
26534
|
+
:dashboard_visual,
|
26535
|
+
:generated_answer)
|
26536
|
+
SENSITIVE = []
|
26537
|
+
include Aws::Structure
|
26538
|
+
end
|
26539
|
+
|
25017
26540
|
# A structure that describes the query execution options.
|
25018
26541
|
#
|
25019
26542
|
# @!attribute [rw] query_execution_mode
|
@@ -25284,6 +26807,10 @@ module Aws::QuickSight
|
|
25284
26807
|
# The column hierarchy that is used during drill-downs and drill-ups.
|
25285
26808
|
# @return [Array<Types::ColumnHierarchy>]
|
25286
26809
|
#
|
26810
|
+
# @!attribute [rw] visual_content_alt_text
|
26811
|
+
# The alt text for the visual.
|
26812
|
+
# @return [String]
|
26813
|
+
#
|
25287
26814
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/RadarChartVisual AWS API Documentation
|
25288
26815
|
#
|
25289
26816
|
class RadarChartVisual < Struct.new(
|
@@ -25292,7 +26819,8 @@ module Aws::QuickSight
|
|
25292
26819
|
:subtitle,
|
25293
26820
|
:chart_configuration,
|
25294
26821
|
:actions,
|
25295
|
-
:column_hierarchies
|
26822
|
+
:column_hierarchies,
|
26823
|
+
:visual_content_alt_text)
|
25296
26824
|
SENSITIVE = []
|
25297
26825
|
include Aws::Structure
|
25298
26826
|
end
|
@@ -27041,6 +28569,10 @@ module Aws::QuickSight
|
|
27041
28569
|
# The list of custom actions that are configured for a visual.
|
27042
28570
|
# @return [Array<Types::VisualCustomAction>]
|
27043
28571
|
#
|
28572
|
+
# @!attribute [rw] visual_content_alt_text
|
28573
|
+
# The alt text for the visual.
|
28574
|
+
# @return [String]
|
28575
|
+
#
|
27044
28576
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SankeyDiagramVisual AWS API Documentation
|
27045
28577
|
#
|
27046
28578
|
class SankeyDiagramVisual < Struct.new(
|
@@ -27048,7 +28580,8 @@ module Aws::QuickSight
|
|
27048
28580
|
:title,
|
27049
28581
|
:subtitle,
|
27050
28582
|
:chart_configuration,
|
27051
|
-
:actions
|
28583
|
+
:actions,
|
28584
|
+
:visual_content_alt_text)
|
27052
28585
|
SENSITIVE = []
|
27053
28586
|
include Aws::Structure
|
27054
28587
|
end
|
@@ -27272,6 +28805,10 @@ module Aws::QuickSight
|
|
27272
28805
|
# The column hierarchy that is used during drill-downs and drill-ups.
|
27273
28806
|
# @return [Array<Types::ColumnHierarchy>]
|
27274
28807
|
#
|
28808
|
+
# @!attribute [rw] visual_content_alt_text
|
28809
|
+
# The alt text for the visual.
|
28810
|
+
# @return [String]
|
28811
|
+
#
|
27275
28812
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ScatterPlotVisual AWS API Documentation
|
27276
28813
|
#
|
27277
28814
|
class ScatterPlotVisual < Struct.new(
|
@@ -27280,7 +28817,8 @@ module Aws::QuickSight
|
|
27280
28817
|
:subtitle,
|
27281
28818
|
:chart_configuration,
|
27282
28819
|
:actions,
|
27283
|
-
:column_hierarchies
|
28820
|
+
:column_hierarchies,
|
28821
|
+
:visual_content_alt_text)
|
27284
28822
|
SENSITIVE = []
|
27285
28823
|
include Aws::Structure
|
27286
28824
|
end
|
@@ -27673,6 +29211,64 @@ module Aws::QuickSight
|
|
27673
29211
|
include Aws::Structure
|
27674
29212
|
end
|
27675
29213
|
|
29214
|
+
# @!attribute [rw] aws_account_id
|
29215
|
+
# The ID of the Amazon Web Services account that contains the topic
|
29216
|
+
# that you want to find.
|
29217
|
+
# @return [String]
|
29218
|
+
#
|
29219
|
+
# @!attribute [rw] filters
|
29220
|
+
# The filters that you want to use to search for the topic.
|
29221
|
+
# @return [Array<Types::TopicSearchFilter>]
|
29222
|
+
#
|
29223
|
+
# @!attribute [rw] next_token
|
29224
|
+
# The token for the next set of results, or null if there are no more
|
29225
|
+
# results.
|
29226
|
+
# @return [String]
|
29227
|
+
#
|
29228
|
+
# @!attribute [rw] max_results
|
29229
|
+
# The maximum number of results to be returned per request.
|
29230
|
+
# @return [Integer]
|
29231
|
+
#
|
29232
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SearchTopicsRequest AWS API Documentation
|
29233
|
+
#
|
29234
|
+
class SearchTopicsRequest < Struct.new(
|
29235
|
+
:aws_account_id,
|
29236
|
+
:filters,
|
29237
|
+
:next_token,
|
29238
|
+
:max_results)
|
29239
|
+
SENSITIVE = []
|
29240
|
+
include Aws::Structure
|
29241
|
+
end
|
29242
|
+
|
29243
|
+
# @!attribute [rw] topic_summary_list
|
29244
|
+
# A list of topic summaries that is returned by the search topic
|
29245
|
+
# request.
|
29246
|
+
# @return [Array<Types::TopicSummary>]
|
29247
|
+
#
|
29248
|
+
# @!attribute [rw] next_token
|
29249
|
+
# The token for the next set of results, or null if there are no more
|
29250
|
+
# results.
|
29251
|
+
# @return [String]
|
29252
|
+
#
|
29253
|
+
# @!attribute [rw] status
|
29254
|
+
# The HTTP status of the request.
|
29255
|
+
# @return [Integer]
|
29256
|
+
#
|
29257
|
+
# @!attribute [rw] request_id
|
29258
|
+
# The Amazon Web Services request ID for this operation.
|
29259
|
+
# @return [String]
|
29260
|
+
#
|
29261
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SearchTopicsResponse AWS API Documentation
|
29262
|
+
#
|
29263
|
+
class SearchTopicsResponse < Struct.new(
|
29264
|
+
:topic_summary_list,
|
29265
|
+
:next_token,
|
29266
|
+
:status,
|
29267
|
+
:request_id)
|
29268
|
+
SENSITIVE = []
|
29269
|
+
include Aws::Structure
|
29270
|
+
end
|
29271
|
+
|
27676
29272
|
# The options that determine the presentation of the secondary value of
|
27677
29273
|
# a KPI visual.
|
27678
29274
|
#
|
@@ -28059,11 +29655,16 @@ module Aws::QuickSight
|
|
28059
29655
|
# the Amazon QuickSight console.
|
28060
29656
|
# @return [String]
|
28061
29657
|
#
|
29658
|
+
# @!attribute [rw] images
|
29659
|
+
# A list of images on a sheet.
|
29660
|
+
# @return [Array<Types::SheetImage>]
|
29661
|
+
#
|
28062
29662
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/Sheet AWS API Documentation
|
28063
29663
|
#
|
28064
29664
|
class Sheet < Struct.new(
|
28065
29665
|
:sheet_id,
|
28066
|
-
:name
|
29666
|
+
:name,
|
29667
|
+
:images)
|
28067
29668
|
SENSITIVE = []
|
28068
29669
|
include Aws::Structure
|
28069
29670
|
end
|
@@ -28184,6 +29785,10 @@ module Aws::QuickSight
|
|
28184
29785
|
# The text boxes that are on a sheet.
|
28185
29786
|
# @return [Array<Types::SheetTextBox>]
|
28186
29787
|
#
|
29788
|
+
# @!attribute [rw] images
|
29789
|
+
# A list of images on a sheet.
|
29790
|
+
# @return [Array<Types::SheetImage>]
|
29791
|
+
#
|
28187
29792
|
# @!attribute [rw] layouts
|
28188
29793
|
# Layouts define how the components of a sheet are arranged.
|
28189
29794
|
#
|
@@ -28219,6 +29824,7 @@ module Aws::QuickSight
|
|
28219
29824
|
:filter_controls,
|
28220
29825
|
:visuals,
|
28221
29826
|
:text_boxes,
|
29827
|
+
:images,
|
28222
29828
|
:layouts,
|
28223
29829
|
:sheet_control_layouts,
|
28224
29830
|
:content_type)
|
@@ -28264,6 +29870,140 @@ module Aws::QuickSight
|
|
28264
29870
|
include Aws::Structure
|
28265
29871
|
end
|
28266
29872
|
|
29873
|
+
# An image that is located on a sheet.
|
29874
|
+
#
|
29875
|
+
# @!attribute [rw] sheet_image_id
|
29876
|
+
# The ID of the sheet image.
|
29877
|
+
# @return [String]
|
29878
|
+
#
|
29879
|
+
# @!attribute [rw] source
|
29880
|
+
# The source of the image.
|
29881
|
+
# @return [Types::SheetImageSource]
|
29882
|
+
#
|
29883
|
+
# @!attribute [rw] scaling
|
29884
|
+
# Determines how the image is scaled.
|
29885
|
+
# @return [Types::SheetImageScalingConfiguration]
|
29886
|
+
#
|
29887
|
+
# @!attribute [rw] tooltip
|
29888
|
+
# The tooltip to be shown when hovering over the image.
|
29889
|
+
# @return [Types::SheetImageTooltipConfiguration]
|
29890
|
+
#
|
29891
|
+
# @!attribute [rw] image_content_alt_text
|
29892
|
+
# The alt text for the image.
|
29893
|
+
# @return [String]
|
29894
|
+
#
|
29895
|
+
# @!attribute [rw] interactions
|
29896
|
+
# The general image interactions setup for an image.
|
29897
|
+
# @return [Types::ImageInteractionOptions]
|
29898
|
+
#
|
29899
|
+
# @!attribute [rw] actions
|
29900
|
+
# A list of custom actions that are configured for an image.
|
29901
|
+
# @return [Array<Types::ImageCustomAction>]
|
29902
|
+
#
|
29903
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SheetImage AWS API Documentation
|
29904
|
+
#
|
29905
|
+
class SheetImage < Struct.new(
|
29906
|
+
:sheet_image_id,
|
29907
|
+
:source,
|
29908
|
+
:scaling,
|
29909
|
+
:tooltip,
|
29910
|
+
:image_content_alt_text,
|
29911
|
+
:interactions,
|
29912
|
+
:actions)
|
29913
|
+
SENSITIVE = []
|
29914
|
+
include Aws::Structure
|
29915
|
+
end
|
29916
|
+
|
29917
|
+
# Determines how the image is scaled
|
29918
|
+
#
|
29919
|
+
# @!attribute [rw] scaling_type
|
29920
|
+
# The scaling option to use when fitting the image inside the
|
29921
|
+
# container.
|
29922
|
+
#
|
29923
|
+
# Valid values are defined as follows:
|
29924
|
+
#
|
29925
|
+
# * `SCALE_TO_WIDTH`: The image takes up the entire width of the
|
29926
|
+
# container. The image aspect ratio is preserved.
|
29927
|
+
#
|
29928
|
+
# * `SCALE_TO_HEIGHT`: The image takes up the entire height of the
|
29929
|
+
# container. The image aspect ratio is preserved.
|
29930
|
+
#
|
29931
|
+
# * `SCALE_TO_CONTAINER`: The image takes up the entire width and
|
29932
|
+
# height of the container. The image aspect ratio is not preserved.
|
29933
|
+
#
|
29934
|
+
# * `SCALE_NONE`: The image is displayed in its original size and is
|
29935
|
+
# not scaled to the container.
|
29936
|
+
# @return [String]
|
29937
|
+
#
|
29938
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SheetImageScalingConfiguration AWS API Documentation
|
29939
|
+
#
|
29940
|
+
class SheetImageScalingConfiguration < Struct.new(
|
29941
|
+
:scaling_type)
|
29942
|
+
SENSITIVE = []
|
29943
|
+
include Aws::Structure
|
29944
|
+
end
|
29945
|
+
|
29946
|
+
# The source of the image.
|
29947
|
+
#
|
29948
|
+
# @!attribute [rw] sheet_image_static_file_source
|
29949
|
+
# The source of the static file that contains the image.
|
29950
|
+
# @return [Types::SheetImageStaticFileSource]
|
29951
|
+
#
|
29952
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SheetImageSource AWS API Documentation
|
29953
|
+
#
|
29954
|
+
class SheetImageSource < Struct.new(
|
29955
|
+
:sheet_image_static_file_source)
|
29956
|
+
SENSITIVE = []
|
29957
|
+
include Aws::Structure
|
29958
|
+
end
|
29959
|
+
|
29960
|
+
# The source of the static file that contains the image.
|
29961
|
+
#
|
29962
|
+
# @!attribute [rw] static_file_id
|
29963
|
+
# The ID of the static file that contains the image.
|
29964
|
+
# @return [String]
|
29965
|
+
#
|
29966
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SheetImageStaticFileSource AWS API Documentation
|
29967
|
+
#
|
29968
|
+
class SheetImageStaticFileSource < Struct.new(
|
29969
|
+
:static_file_id)
|
29970
|
+
SENSITIVE = []
|
29971
|
+
include Aws::Structure
|
29972
|
+
end
|
29973
|
+
|
29974
|
+
# The tooltip configuration for a sheet image.
|
29975
|
+
#
|
29976
|
+
# @!attribute [rw] tooltip_text
|
29977
|
+
# The text that appears in the tooltip.
|
29978
|
+
# @return [Types::SheetImageTooltipText]
|
29979
|
+
#
|
29980
|
+
# @!attribute [rw] visibility
|
29981
|
+
# The visibility of the tooltip.
|
29982
|
+
# @return [String]
|
29983
|
+
#
|
29984
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SheetImageTooltipConfiguration AWS API Documentation
|
29985
|
+
#
|
29986
|
+
class SheetImageTooltipConfiguration < Struct.new(
|
29987
|
+
:tooltip_text,
|
29988
|
+
:visibility)
|
29989
|
+
SENSITIVE = []
|
29990
|
+
include Aws::Structure
|
29991
|
+
end
|
29992
|
+
|
29993
|
+
# The text that appears in the sheet image tooltip.
|
29994
|
+
#
|
29995
|
+
# @!attribute [rw] plain_text
|
29996
|
+
# The plain text format.
|
29997
|
+
# @return [String]
|
29998
|
+
#
|
29999
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SheetImageTooltipText AWS API Documentation
|
30000
|
+
#
|
30001
|
+
class SheetImageTooltipText < Struct.new(
|
30002
|
+
:plain_text)
|
30003
|
+
SENSITIVE = []
|
30004
|
+
include Aws::Structure
|
30005
|
+
end
|
30006
|
+
|
28267
30007
|
# The sheet layout maximization options of a dashbaord.
|
28268
30008
|
#
|
28269
30009
|
# @!attribute [rw] availability_status
|
@@ -28950,6 +30690,25 @@ module Aws::QuickSight
|
|
28950
30690
|
include Aws::Structure
|
28951
30691
|
end
|
28952
30692
|
|
30693
|
+
# A static file that contains the geospatial data.
|
30694
|
+
#
|
30695
|
+
# @!attribute [rw] static_file_id
|
30696
|
+
# The ID of the spatial static file.
|
30697
|
+
# @return [String]
|
30698
|
+
#
|
30699
|
+
# @!attribute [rw] source
|
30700
|
+
# The source of the spatial static file.
|
30701
|
+
# @return [Types::StaticFileSource]
|
30702
|
+
#
|
30703
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SpatialStaticFile AWS API Documentation
|
30704
|
+
#
|
30705
|
+
class SpatialStaticFile < Struct.new(
|
30706
|
+
:static_file_id,
|
30707
|
+
:source)
|
30708
|
+
SENSITIVE = []
|
30709
|
+
include Aws::Structure
|
30710
|
+
end
|
30711
|
+
|
28953
30712
|
# The parameters for SQL Server.
|
28954
30713
|
#
|
28955
30714
|
# @!attribute [rw] host
|
@@ -29384,6 +31143,85 @@ module Aws::QuickSight
|
|
29384
31143
|
include Aws::Structure
|
29385
31144
|
end
|
29386
31145
|
|
31146
|
+
# The static file.
|
31147
|
+
#
|
31148
|
+
# @!attribute [rw] image_static_file
|
31149
|
+
# The image static file.
|
31150
|
+
# @return [Types::ImageStaticFile]
|
31151
|
+
#
|
31152
|
+
# @!attribute [rw] spatial_static_file
|
31153
|
+
# The spacial static file.
|
31154
|
+
# @return [Types::SpatialStaticFile]
|
31155
|
+
#
|
31156
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/StaticFile AWS API Documentation
|
31157
|
+
#
|
31158
|
+
class StaticFile < Struct.new(
|
31159
|
+
:image_static_file,
|
31160
|
+
:spatial_static_file)
|
31161
|
+
SENSITIVE = []
|
31162
|
+
include Aws::Structure
|
31163
|
+
end
|
31164
|
+
|
31165
|
+
# The structure that contains the Amazon S3 location to download the
|
31166
|
+
# static file from.
|
31167
|
+
#
|
31168
|
+
# @!attribute [rw] bucket_name
|
31169
|
+
# The name of the Amazon S3 bucket.
|
31170
|
+
# @return [String]
|
31171
|
+
#
|
31172
|
+
# @!attribute [rw] object_key
|
31173
|
+
# The identifier of the static file in the Amazon S3 bucket.
|
31174
|
+
# @return [String]
|
31175
|
+
#
|
31176
|
+
# @!attribute [rw] region
|
31177
|
+
# The Region of the Amazon S3 account that contains the bucket.
|
31178
|
+
# @return [String]
|
31179
|
+
#
|
31180
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/StaticFileS3SourceOptions AWS API Documentation
|
31181
|
+
#
|
31182
|
+
class StaticFileS3SourceOptions < Struct.new(
|
31183
|
+
:bucket_name,
|
31184
|
+
:object_key,
|
31185
|
+
:region)
|
31186
|
+
SENSITIVE = []
|
31187
|
+
include Aws::Structure
|
31188
|
+
end
|
31189
|
+
|
31190
|
+
# The source of the static file.
|
31191
|
+
#
|
31192
|
+
# @!attribute [rw] url_options
|
31193
|
+
# The structure that contains the URL to download the static file
|
31194
|
+
# from.
|
31195
|
+
# @return [Types::StaticFileUrlSourceOptions]
|
31196
|
+
#
|
31197
|
+
# @!attribute [rw] s3_options
|
31198
|
+
# The structure that contains the Amazon S3 location to download the
|
31199
|
+
# static file from.
|
31200
|
+
# @return [Types::StaticFileS3SourceOptions]
|
31201
|
+
#
|
31202
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/StaticFileSource AWS API Documentation
|
31203
|
+
#
|
31204
|
+
class StaticFileSource < Struct.new(
|
31205
|
+
:url_options,
|
31206
|
+
:s3_options)
|
31207
|
+
SENSITIVE = []
|
31208
|
+
include Aws::Structure
|
31209
|
+
end
|
31210
|
+
|
31211
|
+
# The structure that contains the URL to download the static file from.
|
31212
|
+
#
|
31213
|
+
# @!attribute [rw] url
|
31214
|
+
# The URL to download the static file from.
|
31215
|
+
# @return [String]
|
31216
|
+
#
|
31217
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/StaticFileUrlSourceOptions AWS API Documentation
|
31218
|
+
#
|
31219
|
+
class StaticFileUrlSourceOptions < Struct.new(
|
31220
|
+
:url)
|
31221
|
+
SENSITIVE = []
|
31222
|
+
include Aws::Structure
|
31223
|
+
end
|
31224
|
+
|
29387
31225
|
# A string parameter for a dataset.
|
29388
31226
|
#
|
29389
31227
|
# @!attribute [rw] id
|
@@ -30262,6 +32100,10 @@ module Aws::QuickSight
|
|
30262
32100
|
# The list of custom actions that are configured for a visual.
|
30263
32101
|
# @return [Array<Types::VisualCustomAction>]
|
30264
32102
|
#
|
32103
|
+
# @!attribute [rw] visual_content_alt_text
|
32104
|
+
# The alt text for the visual.
|
32105
|
+
# @return [String]
|
32106
|
+
#
|
30265
32107
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TableVisual AWS API Documentation
|
30266
32108
|
#
|
30267
32109
|
class TableVisual < Struct.new(
|
@@ -30270,7 +32112,8 @@ module Aws::QuickSight
|
|
30270
32112
|
:subtitle,
|
30271
32113
|
:chart_configuration,
|
30272
32114
|
:conditional_formatting,
|
30273
|
-
:actions
|
32115
|
+
:actions,
|
32116
|
+
:visual_content_alt_text)
|
30274
32117
|
SENSITIVE = []
|
30275
32118
|
include Aws::Structure
|
30276
32119
|
end
|
@@ -30677,6 +32520,10 @@ module Aws::QuickSight
|
|
30677
32520
|
# A structure that describes the query execution options.
|
30678
32521
|
# @return [Types::QueryExecutionOptions]
|
30679
32522
|
#
|
32523
|
+
# @!attribute [rw] static_files
|
32524
|
+
# The static files for the definition.
|
32525
|
+
# @return [Array<Types::StaticFile>]
|
32526
|
+
#
|
30680
32527
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TemplateVersionDefinition AWS API Documentation
|
30681
32528
|
#
|
30682
32529
|
class TemplateVersionDefinition < Struct.new(
|
@@ -30688,7 +32535,8 @@ module Aws::QuickSight
|
|
30688
32535
|
:column_configurations,
|
30689
32536
|
:analysis_defaults,
|
30690
32537
|
:options,
|
30691
|
-
:query_execution_options
|
32538
|
+
:query_execution_options,
|
32539
|
+
:static_files)
|
30692
32540
|
SENSITIVE = []
|
30693
32541
|
include Aws::Structure
|
30694
32542
|
end
|
@@ -32589,6 +34437,30 @@ module Aws::QuickSight
|
|
32589
34437
|
include Aws::Structure
|
32590
34438
|
end
|
32591
34439
|
|
34440
|
+
# The filter that is used to search for a topic.
|
34441
|
+
#
|
34442
|
+
# @!attribute [rw] operator
|
34443
|
+
# The operator like equals or like.
|
34444
|
+
# @return [String]
|
34445
|
+
#
|
34446
|
+
# @!attribute [rw] name
|
34447
|
+
# The name of the topic search filter.
|
34448
|
+
# @return [String]
|
34449
|
+
#
|
34450
|
+
# @!attribute [rw] value
|
34451
|
+
# The value of the topic search filter.
|
34452
|
+
# @return [String]
|
34453
|
+
#
|
34454
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TopicSearchFilter AWS API Documentation
|
34455
|
+
#
|
34456
|
+
class TopicSearchFilter < Struct.new(
|
34457
|
+
:operator,
|
34458
|
+
:name,
|
34459
|
+
:value)
|
34460
|
+
SENSITIVE = []
|
34461
|
+
include Aws::Structure
|
34462
|
+
end
|
34463
|
+
|
32592
34464
|
# A structure that represents a singular filter constant, used in
|
32593
34465
|
# filters to specify a single value to match against.
|
32594
34466
|
#
|
@@ -33020,6 +34892,10 @@ module Aws::QuickSight
|
|
33020
34892
|
# The column hierarchy that is used during drill-downs and drill-ups.
|
33021
34893
|
# @return [Array<Types::ColumnHierarchy>]
|
33022
34894
|
#
|
34895
|
+
# @!attribute [rw] visual_content_alt_text
|
34896
|
+
# The alt text for the visual.
|
34897
|
+
# @return [String]
|
34898
|
+
#
|
33023
34899
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TreeMapVisual AWS API Documentation
|
33024
34900
|
#
|
33025
34901
|
class TreeMapVisual < Struct.new(
|
@@ -33028,7 +34904,8 @@ module Aws::QuickSight
|
|
33028
34904
|
:subtitle,
|
33029
34905
|
:chart_configuration,
|
33030
34906
|
:actions,
|
33031
|
-
:column_hierarchies
|
34907
|
+
:column_hierarchies,
|
34908
|
+
:visual_content_alt_text)
|
33032
34909
|
SENSITIVE = []
|
33033
34910
|
include Aws::Structure
|
33034
34911
|
end
|
@@ -33645,6 +35522,41 @@ module Aws::QuickSight
|
|
33645
35522
|
include Aws::Structure
|
33646
35523
|
end
|
33647
35524
|
|
35525
|
+
# @!attribute [rw] aws_account_id
|
35526
|
+
# The ID of the Amazon Web Services account to be updated with a token
|
35527
|
+
# exchange grant.
|
35528
|
+
# @return [String]
|
35529
|
+
#
|
35530
|
+
# @!attribute [rw] namespace
|
35531
|
+
# The namespace of the Amazon QuickSight application.
|
35532
|
+
# @return [String]
|
35533
|
+
#
|
35534
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateApplicationWithTokenExchangeGrantRequest AWS API Documentation
|
35535
|
+
#
|
35536
|
+
class UpdateApplicationWithTokenExchangeGrantRequest < Struct.new(
|
35537
|
+
:aws_account_id,
|
35538
|
+
:namespace)
|
35539
|
+
SENSITIVE = []
|
35540
|
+
include Aws::Structure
|
35541
|
+
end
|
35542
|
+
|
35543
|
+
# @!attribute [rw] status
|
35544
|
+
# The HTTP status of the request.
|
35545
|
+
# @return [Integer]
|
35546
|
+
#
|
35547
|
+
# @!attribute [rw] request_id
|
35548
|
+
# The Amazon Web Services request ID for this operation.
|
35549
|
+
# @return [String]
|
35550
|
+
#
|
35551
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateApplicationWithTokenExchangeGrantResponse AWS API Documentation
|
35552
|
+
#
|
35553
|
+
class UpdateApplicationWithTokenExchangeGrantResponse < Struct.new(
|
35554
|
+
:status,
|
35555
|
+
:request_id)
|
35556
|
+
SENSITIVE = []
|
35557
|
+
include Aws::Structure
|
35558
|
+
end
|
35559
|
+
|
33648
35560
|
# @!attribute [rw] aws_account_id
|
33649
35561
|
# The ID of the Amazon Web Services account that owns the brand
|
33650
35562
|
# assignment.
|
@@ -34119,6 +36031,47 @@ module Aws::QuickSight
|
|
34119
36031
|
include Aws::Structure
|
34120
36032
|
end
|
34121
36033
|
|
36034
|
+
# @!attribute [rw] aws_account_id
|
36035
|
+
# The ID of the Amazon Web Services account that contains the
|
36036
|
+
# dashboard QA configuration that you want to update.
|
36037
|
+
# @return [String]
|
36038
|
+
#
|
36039
|
+
# @!attribute [rw] dashboards_qa_status
|
36040
|
+
# The status of dashboards QA configuration that you want to update.
|
36041
|
+
# @return [String]
|
36042
|
+
#
|
36043
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateDashboardsQAConfigurationRequest AWS API Documentation
|
36044
|
+
#
|
36045
|
+
class UpdateDashboardsQAConfigurationRequest < Struct.new(
|
36046
|
+
:aws_account_id,
|
36047
|
+
:dashboards_qa_status)
|
36048
|
+
SENSITIVE = []
|
36049
|
+
include Aws::Structure
|
36050
|
+
end
|
36051
|
+
|
36052
|
+
# @!attribute [rw] dashboards_qa_status
|
36053
|
+
# A value that indicates whether the dashboard QA configuration is
|
36054
|
+
# enabled or not.
|
36055
|
+
# @return [String]
|
36056
|
+
#
|
36057
|
+
# @!attribute [rw] request_id
|
36058
|
+
# The Amazon Web Services request ID for this operation.
|
36059
|
+
# @return [String]
|
36060
|
+
#
|
36061
|
+
# @!attribute [rw] status
|
36062
|
+
# The HTTP status of the request.
|
36063
|
+
# @return [Integer]
|
36064
|
+
#
|
36065
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateDashboardsQAConfigurationResponse AWS API Documentation
|
36066
|
+
#
|
36067
|
+
class UpdateDashboardsQAConfigurationResponse < Struct.new(
|
36068
|
+
:dashboards_qa_status,
|
36069
|
+
:request_id,
|
36070
|
+
:status)
|
36071
|
+
SENSITIVE = []
|
36072
|
+
include Aws::Structure
|
36073
|
+
end
|
36074
|
+
|
34122
36075
|
# @!attribute [rw] aws_account_id
|
34123
36076
|
# The Amazon Web Services account ID.
|
34124
36077
|
# @return [String]
|
@@ -34437,6 +36390,49 @@ module Aws::QuickSight
|
|
34437
36390
|
include Aws::Structure
|
34438
36391
|
end
|
34439
36392
|
|
36393
|
+
# @!attribute [rw] aws_account_id
|
36394
|
+
# The ID of the Amazon QuickSight account that is connected to the
|
36395
|
+
# Amazon Q Business application that you want to update.
|
36396
|
+
# @return [String]
|
36397
|
+
#
|
36398
|
+
# @!attribute [rw] namespace
|
36399
|
+
# The Amazon QuickSight namespace that contains the linked Amazon Q
|
36400
|
+
# Business application. If this field is left blank, the default
|
36401
|
+
# namespace is used. Currently, the default namespace is the only
|
36402
|
+
# valid value for this parameter.
|
36403
|
+
# @return [String]
|
36404
|
+
#
|
36405
|
+
# @!attribute [rw] application_id
|
36406
|
+
# The ID of the Amazon Q Business application that you want to update.
|
36407
|
+
# @return [String]
|
36408
|
+
#
|
36409
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateDefaultQBusinessApplicationRequest AWS API Documentation
|
36410
|
+
#
|
36411
|
+
class UpdateDefaultQBusinessApplicationRequest < Struct.new(
|
36412
|
+
:aws_account_id,
|
36413
|
+
:namespace,
|
36414
|
+
:application_id)
|
36415
|
+
SENSITIVE = []
|
36416
|
+
include Aws::Structure
|
36417
|
+
end
|
36418
|
+
|
36419
|
+
# @!attribute [rw] request_id
|
36420
|
+
# The Amazon Web Services request ID for this operation.
|
36421
|
+
# @return [String]
|
36422
|
+
#
|
36423
|
+
# @!attribute [rw] status
|
36424
|
+
# The HTTP status of the request.
|
36425
|
+
# @return [Integer]
|
36426
|
+
#
|
36427
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateDefaultQBusinessApplicationResponse AWS API Documentation
|
36428
|
+
#
|
36429
|
+
class UpdateDefaultQBusinessApplicationResponse < Struct.new(
|
36430
|
+
:request_id,
|
36431
|
+
:status)
|
36432
|
+
SENSITIVE = []
|
36433
|
+
include Aws::Structure
|
36434
|
+
end
|
36435
|
+
|
34440
36436
|
# @!attribute [rw] aws_account_id
|
34441
36437
|
# The ID for the Amazon Web Services account that contains the folder
|
34442
36438
|
# to update.
|
@@ -34927,6 +36923,47 @@ module Aws::QuickSight
|
|
34927
36923
|
include Aws::Structure
|
34928
36924
|
end
|
34929
36925
|
|
36926
|
+
# @!attribute [rw] aws_account_id
|
36927
|
+
# The ID of the Amazon Web Services account that contains the Amazon
|
36928
|
+
# QuickSight Q Search configuration that you want to update.
|
36929
|
+
# @return [String]
|
36930
|
+
#
|
36931
|
+
# @!attribute [rw] q_search_status
|
36932
|
+
# The status of the Amazon QuickSight Q Search configuration that the
|
36933
|
+
# user wants to update.
|
36934
|
+
# @return [String]
|
36935
|
+
#
|
36936
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateQuickSightQSearchConfigurationRequest AWS API Documentation
|
36937
|
+
#
|
36938
|
+
class UpdateQuickSightQSearchConfigurationRequest < Struct.new(
|
36939
|
+
:aws_account_id,
|
36940
|
+
:q_search_status)
|
36941
|
+
SENSITIVE = []
|
36942
|
+
include Aws::Structure
|
36943
|
+
end
|
36944
|
+
|
36945
|
+
# @!attribute [rw] q_search_status
|
36946
|
+
# The status of the Amazon QuickSight Q Search configuration.
|
36947
|
+
# @return [String]
|
36948
|
+
#
|
36949
|
+
# @!attribute [rw] request_id
|
36950
|
+
# The Amazon Web Services request ID for this operation.
|
36951
|
+
# @return [String]
|
36952
|
+
#
|
36953
|
+
# @!attribute [rw] status
|
36954
|
+
# The HTTP status of the request.
|
36955
|
+
# @return [Integer]
|
36956
|
+
#
|
36957
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateQuickSightQSearchConfigurationResponse AWS API Documentation
|
36958
|
+
#
|
36959
|
+
class UpdateQuickSightQSearchConfigurationResponse < Struct.new(
|
36960
|
+
:q_search_status,
|
36961
|
+
:request_id,
|
36962
|
+
:status)
|
36963
|
+
SENSITIVE = []
|
36964
|
+
include Aws::Structure
|
36965
|
+
end
|
36966
|
+
|
34930
36967
|
# @!attribute [rw] data_set_id
|
34931
36968
|
# The ID of the dataset.
|
34932
36969
|
# @return [String]
|
@@ -36384,6 +38421,10 @@ module Aws::QuickSight
|
|
36384
38421
|
# [1]: https://docs.aws.amazon.com/quicksight/latest/user/filled-maps.html
|
36385
38422
|
# @return [Types::FilledMapVisual]
|
36386
38423
|
#
|
38424
|
+
# @!attribute [rw] layer_map_visual
|
38425
|
+
# The properties for a layer map visual
|
38426
|
+
# @return [Types::LayerMapVisual]
|
38427
|
+
#
|
36387
38428
|
# @!attribute [rw] funnel_chart_visual
|
36388
38429
|
# A funnel chart.
|
36389
38430
|
#
|
@@ -36509,6 +38550,10 @@ module Aws::QuickSight
|
|
36509
38550
|
# [1]: https://docs.aws.amazon.com/quicksight/latest/user/radar-chart.html
|
36510
38551
|
# @return [Types::RadarChartVisual]
|
36511
38552
|
#
|
38553
|
+
# @!attribute [rw] plugin_visual
|
38554
|
+
# The custom plugin visual type.
|
38555
|
+
# @return [Types::PluginVisual]
|
38556
|
+
#
|
36512
38557
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/Visual AWS API Documentation
|
36513
38558
|
#
|
36514
38559
|
class Visual < Struct.new(
|
@@ -36523,6 +38568,7 @@ module Aws::QuickSight
|
|
36523
38568
|
:tree_map_visual,
|
36524
38569
|
:geospatial_map_visual,
|
36525
38570
|
:filled_map_visual,
|
38571
|
+
:layer_map_visual,
|
36526
38572
|
:funnel_chart_visual,
|
36527
38573
|
:scatter_plot_visual,
|
36528
38574
|
:combo_chart_visual,
|
@@ -36534,7 +38580,8 @@ module Aws::QuickSight
|
|
36534
38580
|
:sankey_diagram_visual,
|
36535
38581
|
:custom_content_visual,
|
36536
38582
|
:empty_visual,
|
36537
|
-
:radar_chart_visual
|
38583
|
+
:radar_chart_visual,
|
38584
|
+
:plugin_visual)
|
36538
38585
|
SENSITIVE = []
|
36539
38586
|
include Aws::Structure
|
36540
38587
|
end
|
@@ -36969,6 +39016,10 @@ module Aws::QuickSight
|
|
36969
39016
|
# The column hierarchy that is used during drill-downs and drill-ups.
|
36970
39017
|
# @return [Array<Types::ColumnHierarchy>]
|
36971
39018
|
#
|
39019
|
+
# @!attribute [rw] visual_content_alt_text
|
39020
|
+
# The alt text for the visual.
|
39021
|
+
# @return [String]
|
39022
|
+
#
|
36972
39023
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/WaterfallVisual AWS API Documentation
|
36973
39024
|
#
|
36974
39025
|
class WaterfallVisual < Struct.new(
|
@@ -36977,7 +39028,8 @@ module Aws::QuickSight
|
|
36977
39028
|
:subtitle,
|
36978
39029
|
:chart_configuration,
|
36979
39030
|
:actions,
|
36980
|
-
:column_hierarchies
|
39031
|
+
:column_hierarchies,
|
39032
|
+
:visual_content_alt_text)
|
36981
39033
|
SENSITIVE = []
|
36982
39034
|
include Aws::Structure
|
36983
39035
|
end
|
@@ -37199,6 +39251,10 @@ module Aws::QuickSight
|
|
37199
39251
|
# The column hierarchy that is used during drill-downs and drill-ups.
|
37200
39252
|
# @return [Array<Types::ColumnHierarchy>]
|
37201
39253
|
#
|
39254
|
+
# @!attribute [rw] visual_content_alt_text
|
39255
|
+
# The alt text for the visual.
|
39256
|
+
# @return [String]
|
39257
|
+
#
|
37202
39258
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/WordCloudVisual AWS API Documentation
|
37203
39259
|
#
|
37204
39260
|
class WordCloudVisual < Struct.new(
|
@@ -37207,7 +39263,8 @@ module Aws::QuickSight
|
|
37207
39263
|
:subtitle,
|
37208
39264
|
:chart_configuration,
|
37209
39265
|
:actions,
|
37210
|
-
:column_hierarchies
|
39266
|
+
:column_hierarchies,
|
39267
|
+
:visual_content_alt_text)
|
37211
39268
|
SENSITIVE = []
|
37212
39269
|
include Aws::Structure
|
37213
39270
|
end
|