aws-sdk-quicksight 1.137.0 → 1.138.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-quicksight/client.rb +238 -1
- data/lib/aws-sdk-quicksight/client_api.rb +483 -0
- data/lib/aws-sdk-quicksight/types.rb +1614 -34
- data/lib/aws-sdk-quicksight.rb +1 -1
- data/sig/client.rbs +22401 -7203
- data/sig/types.rbs +442 -2
- 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
|
@@ -13043,6 +13080,41 @@ module Aws::QuickSight
|
|
13043
13080
|
include Aws::Structure
|
13044
13081
|
end
|
13045
13082
|
|
13083
|
+
# @!attribute [rw] aws_account_id
|
13084
|
+
# The ID of the Amazon Web Services account that contains the
|
13085
|
+
# dashboard QA configuration that you want described.
|
13086
|
+
# @return [String]
|
13087
|
+
#
|
13088
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeDashboardsQAConfigurationRequest AWS API Documentation
|
13089
|
+
#
|
13090
|
+
class DescribeDashboardsQAConfigurationRequest < Struct.new(
|
13091
|
+
:aws_account_id)
|
13092
|
+
SENSITIVE = []
|
13093
|
+
include Aws::Structure
|
13094
|
+
end
|
13095
|
+
|
13096
|
+
# @!attribute [rw] dashboards_qa_status
|
13097
|
+
# The status of dashboards QA configuration that you want described.
|
13098
|
+
# @return [String]
|
13099
|
+
#
|
13100
|
+
# @!attribute [rw] request_id
|
13101
|
+
# The Amazon Web Services request ID for this operation.
|
13102
|
+
# @return [String]
|
13103
|
+
#
|
13104
|
+
# @!attribute [rw] status
|
13105
|
+
# The HTTP status of the request.
|
13106
|
+
# @return [Integer]
|
13107
|
+
#
|
13108
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeDashboardsQAConfigurationResponse AWS API Documentation
|
13109
|
+
#
|
13110
|
+
class DescribeDashboardsQAConfigurationResponse < Struct.new(
|
13111
|
+
:dashboards_qa_status,
|
13112
|
+
:request_id,
|
13113
|
+
:status)
|
13114
|
+
SENSITIVE = []
|
13115
|
+
include Aws::Structure
|
13116
|
+
end
|
13117
|
+
|
13046
13118
|
# @!attribute [rw] aws_account_id
|
13047
13119
|
# The Amazon Web Services account ID.
|
13048
13120
|
# @return [String]
|
@@ -15463,6 +15535,10 @@ module Aws::QuickSight
|
|
15463
15535
|
# The list of custom actions that are configured for a visual.
|
15464
15536
|
# @return [Array<Types::VisualCustomAction>]
|
15465
15537
|
#
|
15538
|
+
# @!attribute [rw] visual_content_alt_text
|
15539
|
+
# The alt text for the visual.
|
15540
|
+
# @return [String]
|
15541
|
+
#
|
15466
15542
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FilledMapVisual AWS API Documentation
|
15467
15543
|
#
|
15468
15544
|
class FilledMapVisual < Struct.new(
|
@@ -15472,7 +15548,8 @@ module Aws::QuickSight
|
|
15472
15548
|
:chart_configuration,
|
15473
15549
|
:conditional_formatting,
|
15474
15550
|
:column_hierarchies,
|
15475
|
-
:actions
|
15551
|
+
:actions,
|
15552
|
+
:visual_content_alt_text)
|
15476
15553
|
SENSITIVE = []
|
15477
15554
|
include Aws::Structure
|
15478
15555
|
end
|
@@ -16400,6 +16477,10 @@ module Aws::QuickSight
|
|
16400
16477
|
# family.
|
16401
16478
|
# @return [String]
|
16402
16479
|
#
|
16480
|
+
# @!attribute [rw] font_family
|
16481
|
+
# The font family that you want to use.
|
16482
|
+
# @return [String]
|
16483
|
+
#
|
16403
16484
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FontConfiguration AWS API Documentation
|
16404
16485
|
#
|
16405
16486
|
class FontConfiguration < Struct.new(
|
@@ -16407,7 +16488,8 @@ module Aws::QuickSight
|
|
16407
16488
|
:font_decoration,
|
16408
16489
|
:font_color,
|
16409
16490
|
:font_weight,
|
16410
|
-
:font_style
|
16491
|
+
:font_style,
|
16492
|
+
:font_family)
|
16411
16493
|
SENSITIVE = []
|
16412
16494
|
include Aws::Structure
|
16413
16495
|
end
|
@@ -16419,10 +16501,15 @@ module Aws::QuickSight
|
|
16419
16501
|
# context.
|
16420
16502
|
# @return [String]
|
16421
16503
|
#
|
16504
|
+
# @!attribute [rw] absolute
|
16505
|
+
# The font size that you want to use in px.
|
16506
|
+
# @return [String]
|
16507
|
+
#
|
16422
16508
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FontSize AWS API Documentation
|
16423
16509
|
#
|
16424
16510
|
class FontSize < Struct.new(
|
16425
|
-
:relative
|
16511
|
+
:relative,
|
16512
|
+
:absolute)
|
16426
16513
|
SENSITIVE = []
|
16427
16514
|
include Aws::Structure
|
16428
16515
|
end
|
@@ -16938,6 +17025,10 @@ module Aws::QuickSight
|
|
16938
17025
|
# The column hierarchy that is used during drill-downs and drill-ups.
|
16939
17026
|
# @return [Array<Types::ColumnHierarchy>]
|
16940
17027
|
#
|
17028
|
+
# @!attribute [rw] visual_content_alt_text
|
17029
|
+
# The alt text for the visual.
|
17030
|
+
# @return [String]
|
17031
|
+
#
|
16941
17032
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FunnelChartVisual AWS API Documentation
|
16942
17033
|
#
|
16943
17034
|
class FunnelChartVisual < Struct.new(
|
@@ -16946,7 +17037,8 @@ module Aws::QuickSight
|
|
16946
17037
|
:subtitle,
|
16947
17038
|
:chart_configuration,
|
16948
17039
|
:actions,
|
16949
|
-
:column_hierarchies
|
17040
|
+
:column_hierarchies,
|
17041
|
+
:visual_content_alt_text)
|
16950
17042
|
SENSITIVE = []
|
16951
17043
|
include Aws::Structure
|
16952
17044
|
end
|
@@ -17174,6 +17266,10 @@ module Aws::QuickSight
|
|
17174
17266
|
# The list of custom actions that are configured for a visual.
|
17175
17267
|
# @return [Array<Types::VisualCustomAction>]
|
17176
17268
|
#
|
17269
|
+
# @!attribute [rw] visual_content_alt_text
|
17270
|
+
# The alt text for the visual.
|
17271
|
+
# @return [String]
|
17272
|
+
#
|
17177
17273
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GaugeChartVisual AWS API Documentation
|
17178
17274
|
#
|
17179
17275
|
class GaugeChartVisual < Struct.new(
|
@@ -17182,7 +17278,8 @@ module Aws::QuickSight
|
|
17182
17278
|
:subtitle,
|
17183
17279
|
:chart_configuration,
|
17184
17280
|
:conditional_formatting,
|
17185
|
-
:actions
|
17281
|
+
:actions,
|
17282
|
+
:visual_content_alt_text)
|
17186
17283
|
SENSITIVE = []
|
17187
17284
|
include Aws::Structure
|
17188
17285
|
end
|
@@ -17385,6 +17482,122 @@ module Aws::QuickSight
|
|
17385
17482
|
include Aws::Structure
|
17386
17483
|
end
|
17387
17484
|
|
17485
|
+
# The definition for a categorical color.
|
17486
|
+
#
|
17487
|
+
# @!attribute [rw] category_data_colors
|
17488
|
+
# A list of categorical data colors for each category.
|
17489
|
+
# @return [Array<Types::GeospatialCategoricalDataColor>]
|
17490
|
+
#
|
17491
|
+
# @!attribute [rw] null_data_visibility
|
17492
|
+
# The state of visibility for null data.
|
17493
|
+
# @return [String]
|
17494
|
+
#
|
17495
|
+
# @!attribute [rw] null_data_settings
|
17496
|
+
# The null data visualization settings.
|
17497
|
+
# @return [Types::GeospatialNullDataSettings]
|
17498
|
+
#
|
17499
|
+
# @!attribute [rw] default_opacity
|
17500
|
+
# The default opacity of a categorical color.
|
17501
|
+
# @return [Float]
|
17502
|
+
#
|
17503
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialCategoricalColor AWS API Documentation
|
17504
|
+
#
|
17505
|
+
class GeospatialCategoricalColor < Struct.new(
|
17506
|
+
:category_data_colors,
|
17507
|
+
:null_data_visibility,
|
17508
|
+
:null_data_settings,
|
17509
|
+
:default_opacity)
|
17510
|
+
SENSITIVE = []
|
17511
|
+
include Aws::Structure
|
17512
|
+
end
|
17513
|
+
|
17514
|
+
# The categorical data color for a single category.
|
17515
|
+
#
|
17516
|
+
# @!attribute [rw] color
|
17517
|
+
# The color and opacity values for the category data color.
|
17518
|
+
# @return [String]
|
17519
|
+
#
|
17520
|
+
# @!attribute [rw] data_value
|
17521
|
+
# The data value for the category data color.
|
17522
|
+
# @return [String]
|
17523
|
+
#
|
17524
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialCategoricalDataColor AWS API Documentation
|
17525
|
+
#
|
17526
|
+
class GeospatialCategoricalDataColor < Struct.new(
|
17527
|
+
:color,
|
17528
|
+
:data_value)
|
17529
|
+
SENSITIVE = []
|
17530
|
+
include Aws::Structure
|
17531
|
+
end
|
17532
|
+
|
17533
|
+
# The geospatial radius for a circle.
|
17534
|
+
#
|
17535
|
+
# @!attribute [rw] radius
|
17536
|
+
# The positive value for the radius of a circle.
|
17537
|
+
# @return [Float]
|
17538
|
+
#
|
17539
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialCircleRadius AWS API Documentation
|
17540
|
+
#
|
17541
|
+
class GeospatialCircleRadius < Struct.new(
|
17542
|
+
:radius)
|
17543
|
+
SENSITIVE = []
|
17544
|
+
include Aws::Structure
|
17545
|
+
end
|
17546
|
+
|
17547
|
+
# The properties for a circle symbol style.
|
17548
|
+
#
|
17549
|
+
# @!attribute [rw] fill_color
|
17550
|
+
# The color and opacity values for the fill color.
|
17551
|
+
# @return [Types::GeospatialColor]
|
17552
|
+
#
|
17553
|
+
# @!attribute [rw] stroke_color
|
17554
|
+
# The color and opacity values for the stroke color.
|
17555
|
+
# @return [Types::GeospatialColor]
|
17556
|
+
#
|
17557
|
+
# @!attribute [rw] stroke_width
|
17558
|
+
# The width of the stroke (border).
|
17559
|
+
# @return [Types::GeospatialLineWidth]
|
17560
|
+
#
|
17561
|
+
# @!attribute [rw] circle_radius
|
17562
|
+
# The radius of the circle.
|
17563
|
+
# @return [Types::GeospatialCircleRadius]
|
17564
|
+
#
|
17565
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialCircleSymbolStyle AWS API Documentation
|
17566
|
+
#
|
17567
|
+
class GeospatialCircleSymbolStyle < Struct.new(
|
17568
|
+
:fill_color,
|
17569
|
+
:stroke_color,
|
17570
|
+
:stroke_width,
|
17571
|
+
:circle_radius)
|
17572
|
+
SENSITIVE = []
|
17573
|
+
include Aws::Structure
|
17574
|
+
end
|
17575
|
+
|
17576
|
+
# The visualization properties for solid, gradient, and categorical
|
17577
|
+
# colors.
|
17578
|
+
#
|
17579
|
+
# @!attribute [rw] solid
|
17580
|
+
# The visualization properties for the solid color.
|
17581
|
+
# @return [Types::GeospatialSolidColor]
|
17582
|
+
#
|
17583
|
+
# @!attribute [rw] gradient
|
17584
|
+
# The visualization properties for the gradient color.
|
17585
|
+
# @return [Types::GeospatialGradientColor]
|
17586
|
+
#
|
17587
|
+
# @!attribute [rw] categorical
|
17588
|
+
# The visualization properties for the categorical color.
|
17589
|
+
# @return [Types::GeospatialCategoricalColor]
|
17590
|
+
#
|
17591
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialColor AWS API Documentation
|
17592
|
+
#
|
17593
|
+
class GeospatialColor < Struct.new(
|
17594
|
+
:solid,
|
17595
|
+
:gradient,
|
17596
|
+
:categorical)
|
17597
|
+
SENSITIVE = []
|
17598
|
+
include Aws::Structure
|
17599
|
+
end
|
17600
|
+
|
17388
17601
|
# The bound options (north, south, west, east) of the geospatial window
|
17389
17602
|
# options.
|
17390
17603
|
#
|
@@ -17415,6 +17628,68 @@ module Aws::QuickSight
|
|
17415
17628
|
include Aws::Structure
|
17416
17629
|
end
|
17417
17630
|
|
17631
|
+
# The data source properties for the geospatial data.
|
17632
|
+
#
|
17633
|
+
# @!attribute [rw] static_file_data_source
|
17634
|
+
# The static file data source properties for the geospatial data.
|
17635
|
+
# @return [Types::GeospatialStaticFileSource]
|
17636
|
+
#
|
17637
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialDataSourceItem AWS API Documentation
|
17638
|
+
#
|
17639
|
+
class GeospatialDataSourceItem < Struct.new(
|
17640
|
+
:static_file_data_source)
|
17641
|
+
SENSITIVE = []
|
17642
|
+
include Aws::Structure
|
17643
|
+
end
|
17644
|
+
|
17645
|
+
# The definition for a gradient color.
|
17646
|
+
#
|
17647
|
+
# @!attribute [rw] step_colors
|
17648
|
+
# A list of gradient step colors for the gradient.
|
17649
|
+
# @return [Array<Types::GeospatialGradientStepColor>]
|
17650
|
+
#
|
17651
|
+
# @!attribute [rw] null_data_visibility
|
17652
|
+
# The state of visibility for null data.
|
17653
|
+
# @return [String]
|
17654
|
+
#
|
17655
|
+
# @!attribute [rw] null_data_settings
|
17656
|
+
# The null data visualization settings.
|
17657
|
+
# @return [Types::GeospatialNullDataSettings]
|
17658
|
+
#
|
17659
|
+
# @!attribute [rw] default_opacity
|
17660
|
+
# The default opacity for the gradient color.
|
17661
|
+
# @return [Float]
|
17662
|
+
#
|
17663
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialGradientColor AWS API Documentation
|
17664
|
+
#
|
17665
|
+
class GeospatialGradientColor < Struct.new(
|
17666
|
+
:step_colors,
|
17667
|
+
:null_data_visibility,
|
17668
|
+
:null_data_settings,
|
17669
|
+
:default_opacity)
|
17670
|
+
SENSITIVE = []
|
17671
|
+
include Aws::Structure
|
17672
|
+
end
|
17673
|
+
|
17674
|
+
# The gradient step color for a single step.
|
17675
|
+
#
|
17676
|
+
# @!attribute [rw] color
|
17677
|
+
# The color and opacity values for the gradient step color.
|
17678
|
+
# @return [String]
|
17679
|
+
#
|
17680
|
+
# @!attribute [rw] data_value
|
17681
|
+
# The data value for the gradient step color.
|
17682
|
+
# @return [Float]
|
17683
|
+
#
|
17684
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialGradientStepColor AWS API Documentation
|
17685
|
+
#
|
17686
|
+
class GeospatialGradientStepColor < Struct.new(
|
17687
|
+
:color,
|
17688
|
+
:data_value)
|
17689
|
+
SENSITIVE = []
|
17690
|
+
include Aws::Structure
|
17691
|
+
end
|
17692
|
+
|
17418
17693
|
# The color scale specification for the heatmap point style.
|
17419
17694
|
#
|
17420
17695
|
# @!attribute [rw] colors
|
@@ -17457,6 +17732,223 @@ module Aws::QuickSight
|
|
17457
17732
|
include Aws::Structure
|
17458
17733
|
end
|
17459
17734
|
|
17735
|
+
# The color field that defines a gradient or categorical style.
|
17736
|
+
#
|
17737
|
+
# @!attribute [rw] color_dimensions_fields
|
17738
|
+
# A list of color dimension fields.
|
17739
|
+
# @return [Array<Types::DimensionField>]
|
17740
|
+
#
|
17741
|
+
# @!attribute [rw] color_values_fields
|
17742
|
+
# A list of color measure fields.
|
17743
|
+
# @return [Array<Types::MeasureField>]
|
17744
|
+
#
|
17745
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialLayerColorField AWS API Documentation
|
17746
|
+
#
|
17747
|
+
class GeospatialLayerColorField < Struct.new(
|
17748
|
+
:color_dimensions_fields,
|
17749
|
+
:color_values_fields)
|
17750
|
+
SENSITIVE = []
|
17751
|
+
include Aws::Structure
|
17752
|
+
end
|
17753
|
+
|
17754
|
+
# The definition properties for a geospatial layer.
|
17755
|
+
#
|
17756
|
+
# @!attribute [rw] point_layer
|
17757
|
+
# The definition for a point layer.
|
17758
|
+
# @return [Types::GeospatialPointLayer]
|
17759
|
+
#
|
17760
|
+
# @!attribute [rw] line_layer
|
17761
|
+
# The definition for a line layer.
|
17762
|
+
# @return [Types::GeospatialLineLayer]
|
17763
|
+
#
|
17764
|
+
# @!attribute [rw] polygon_layer
|
17765
|
+
# The definition for a polygon layer.
|
17766
|
+
# @return [Types::GeospatialPolygonLayer]
|
17767
|
+
#
|
17768
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialLayerDefinition AWS API Documentation
|
17769
|
+
#
|
17770
|
+
class GeospatialLayerDefinition < Struct.new(
|
17771
|
+
:point_layer,
|
17772
|
+
:line_layer,
|
17773
|
+
:polygon_layer)
|
17774
|
+
SENSITIVE = []
|
17775
|
+
include Aws::Structure
|
17776
|
+
end
|
17777
|
+
|
17778
|
+
# The properties for a single geospatial layer.
|
17779
|
+
#
|
17780
|
+
# @!attribute [rw] layer_id
|
17781
|
+
# The ID of the layer.
|
17782
|
+
# @return [String]
|
17783
|
+
#
|
17784
|
+
# @!attribute [rw] layer_type
|
17785
|
+
# The layer type.
|
17786
|
+
# @return [String]
|
17787
|
+
#
|
17788
|
+
# @!attribute [rw] data_source
|
17789
|
+
# The data source for the layer.
|
17790
|
+
# @return [Types::GeospatialDataSourceItem]
|
17791
|
+
#
|
17792
|
+
# @!attribute [rw] label
|
17793
|
+
# The label that is displayed for the layer.
|
17794
|
+
# @return [String]
|
17795
|
+
#
|
17796
|
+
# @!attribute [rw] visibility
|
17797
|
+
# The state of visibility for the layer.
|
17798
|
+
# @return [String]
|
17799
|
+
#
|
17800
|
+
# @!attribute [rw] layer_definition
|
17801
|
+
# The definition properties for a layer.
|
17802
|
+
# @return [Types::GeospatialLayerDefinition]
|
17803
|
+
#
|
17804
|
+
# @!attribute [rw] tooltip
|
17805
|
+
# The display options for the visual tooltip.
|
17806
|
+
# @return [Types::TooltipOptions]
|
17807
|
+
#
|
17808
|
+
# @!attribute [rw] join_definition
|
17809
|
+
# The join definition properties for a layer.
|
17810
|
+
# @return [Types::GeospatialLayerJoinDefinition]
|
17811
|
+
#
|
17812
|
+
# @!attribute [rw] actions
|
17813
|
+
# A list of custom actions for a layer.
|
17814
|
+
# @return [Array<Types::LayerCustomAction>]
|
17815
|
+
#
|
17816
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialLayerItem AWS API Documentation
|
17817
|
+
#
|
17818
|
+
class GeospatialLayerItem < Struct.new(
|
17819
|
+
:layer_id,
|
17820
|
+
:layer_type,
|
17821
|
+
:data_source,
|
17822
|
+
:label,
|
17823
|
+
:visibility,
|
17824
|
+
:layer_definition,
|
17825
|
+
:tooltip,
|
17826
|
+
:join_definition,
|
17827
|
+
:actions)
|
17828
|
+
SENSITIVE = []
|
17829
|
+
include Aws::Structure
|
17830
|
+
end
|
17831
|
+
|
17832
|
+
# The custom actions for a layer.
|
17833
|
+
#
|
17834
|
+
# @!attribute [rw] shape_key_field
|
17835
|
+
# The name of the field or property in the geospatial data source.
|
17836
|
+
# @return [String]
|
17837
|
+
#
|
17838
|
+
# @!attribute [rw] dataset_key_field
|
17839
|
+
# The unaggregated field for a table.
|
17840
|
+
# @return [Types::UnaggregatedField]
|
17841
|
+
#
|
17842
|
+
# @!attribute [rw] color_field
|
17843
|
+
# The geospatial color field for the join definition.
|
17844
|
+
# @return [Types::GeospatialLayerColorField]
|
17845
|
+
#
|
17846
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialLayerJoinDefinition AWS API Documentation
|
17847
|
+
#
|
17848
|
+
class GeospatialLayerJoinDefinition < Struct.new(
|
17849
|
+
:shape_key_field,
|
17850
|
+
:dataset_key_field,
|
17851
|
+
:color_field)
|
17852
|
+
SENSITIVE = []
|
17853
|
+
include Aws::Structure
|
17854
|
+
end
|
17855
|
+
|
17856
|
+
# The map definition that defines map state, map style, and geospatial
|
17857
|
+
# layers.
|
17858
|
+
#
|
17859
|
+
# @!attribute [rw] legend
|
17860
|
+
# The options for the legend setup of a visual.
|
17861
|
+
# @return [Types::LegendOptions]
|
17862
|
+
#
|
17863
|
+
# @!attribute [rw] map_layers
|
17864
|
+
# The geospatial layers to visualize on the map.
|
17865
|
+
# @return [Array<Types::GeospatialLayerItem>]
|
17866
|
+
#
|
17867
|
+
# @!attribute [rw] map_state
|
17868
|
+
# The map state properties for the map.
|
17869
|
+
# @return [Types::GeospatialMapState]
|
17870
|
+
#
|
17871
|
+
# @!attribute [rw] map_style
|
17872
|
+
# The map style properties for the map.
|
17873
|
+
# @return [Types::GeospatialMapStyle]
|
17874
|
+
#
|
17875
|
+
# @!attribute [rw] interactions
|
17876
|
+
# The general visual interactions setup for visual publish options
|
17877
|
+
# @return [Types::VisualInteractionOptions]
|
17878
|
+
#
|
17879
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialLayerMapConfiguration AWS API Documentation
|
17880
|
+
#
|
17881
|
+
class GeospatialLayerMapConfiguration < Struct.new(
|
17882
|
+
:legend,
|
17883
|
+
:map_layers,
|
17884
|
+
:map_state,
|
17885
|
+
:map_style,
|
17886
|
+
:interactions)
|
17887
|
+
SENSITIVE = []
|
17888
|
+
include Aws::Structure
|
17889
|
+
end
|
17890
|
+
|
17891
|
+
# The geospatial Line layer.
|
17892
|
+
#
|
17893
|
+
# @!attribute [rw] style
|
17894
|
+
# The visualization style for a line layer.
|
17895
|
+
# @return [Types::GeospatialLineStyle]
|
17896
|
+
#
|
17897
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialLineLayer AWS API Documentation
|
17898
|
+
#
|
17899
|
+
class GeospatialLineLayer < Struct.new(
|
17900
|
+
:style)
|
17901
|
+
SENSITIVE = []
|
17902
|
+
include Aws::Structure
|
17903
|
+
end
|
17904
|
+
|
17905
|
+
# The visualization style for a line layer.
|
17906
|
+
#
|
17907
|
+
# @!attribute [rw] line_symbol_style
|
17908
|
+
# The symbol style for a line style.
|
17909
|
+
# @return [Types::GeospatialLineSymbolStyle]
|
17910
|
+
#
|
17911
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialLineStyle AWS API Documentation
|
17912
|
+
#
|
17913
|
+
class GeospatialLineStyle < Struct.new(
|
17914
|
+
:line_symbol_style)
|
17915
|
+
SENSITIVE = []
|
17916
|
+
include Aws::Structure
|
17917
|
+
end
|
17918
|
+
|
17919
|
+
# The symbol style for a line layer.
|
17920
|
+
#
|
17921
|
+
# @!attribute [rw] fill_color
|
17922
|
+
# The color and opacity values for the fill color.
|
17923
|
+
# @return [Types::GeospatialColor]
|
17924
|
+
#
|
17925
|
+
# @!attribute [rw] line_width
|
17926
|
+
# The width value for a line.
|
17927
|
+
# @return [Types::GeospatialLineWidth]
|
17928
|
+
#
|
17929
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialLineSymbolStyle AWS API Documentation
|
17930
|
+
#
|
17931
|
+
class GeospatialLineSymbolStyle < Struct.new(
|
17932
|
+
:fill_color,
|
17933
|
+
:line_width)
|
17934
|
+
SENSITIVE = []
|
17935
|
+
include Aws::Structure
|
17936
|
+
end
|
17937
|
+
|
17938
|
+
# The width properties for a line.
|
17939
|
+
#
|
17940
|
+
# @!attribute [rw] line_width
|
17941
|
+
# The positive value for the width of a line.
|
17942
|
+
# @return [Float]
|
17943
|
+
#
|
17944
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialLineWidth AWS API Documentation
|
17945
|
+
#
|
17946
|
+
class GeospatialLineWidth < Struct.new(
|
17947
|
+
:line_width)
|
17948
|
+
SENSITIVE = []
|
17949
|
+
include Aws::Structure
|
17950
|
+
end
|
17951
|
+
|
17460
17952
|
# The aggregated field wells for a geospatial map.
|
17461
17953
|
#
|
17462
17954
|
# @!attribute [rw] geospatial
|
@@ -17549,6 +18041,50 @@ module Aws::QuickSight
|
|
17549
18041
|
include Aws::Structure
|
17550
18042
|
end
|
17551
18043
|
|
18044
|
+
# The map state properties for a map.
|
18045
|
+
#
|
18046
|
+
# @!attribute [rw] bounds
|
18047
|
+
# The bound options (north, south, west, east) of the geospatial
|
18048
|
+
# window options.
|
18049
|
+
# @return [Types::GeospatialCoordinateBounds]
|
18050
|
+
#
|
18051
|
+
# @!attribute [rw] map_navigation
|
18052
|
+
# Enables or disables map navigation for a map.
|
18053
|
+
# @return [String]
|
18054
|
+
#
|
18055
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialMapState AWS API Documentation
|
18056
|
+
#
|
18057
|
+
class GeospatialMapState < Struct.new(
|
18058
|
+
:bounds,
|
18059
|
+
:map_navigation)
|
18060
|
+
SENSITIVE = []
|
18061
|
+
include Aws::Structure
|
18062
|
+
end
|
18063
|
+
|
18064
|
+
# The map style properties for a map.
|
18065
|
+
#
|
18066
|
+
# @!attribute [rw] base_map_style
|
18067
|
+
# The selected base map style.
|
18068
|
+
# @return [String]
|
18069
|
+
#
|
18070
|
+
# @!attribute [rw] background_color
|
18071
|
+
# The background color and opacity values for a map.
|
18072
|
+
# @return [String]
|
18073
|
+
#
|
18074
|
+
# @!attribute [rw] base_map_visibility
|
18075
|
+
# The state of visibility for the base map.
|
18076
|
+
# @return [String]
|
18077
|
+
#
|
18078
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialMapStyle AWS API Documentation
|
18079
|
+
#
|
18080
|
+
class GeospatialMapStyle < Struct.new(
|
18081
|
+
:base_map_style,
|
18082
|
+
:background_color,
|
18083
|
+
:base_map_visibility)
|
18084
|
+
SENSITIVE = []
|
18085
|
+
include Aws::Structure
|
18086
|
+
end
|
18087
|
+
|
17552
18088
|
# The map style options of the geospatial map.
|
17553
18089
|
#
|
17554
18090
|
# @!attribute [rw] base_map_style
|
@@ -17599,6 +18135,10 @@ module Aws::QuickSight
|
|
17599
18135
|
# The list of custom actions that are configured for a visual.
|
17600
18136
|
# @return [Array<Types::VisualCustomAction>]
|
17601
18137
|
#
|
18138
|
+
# @!attribute [rw] visual_content_alt_text
|
18139
|
+
# The alt text for the visual.
|
18140
|
+
# @return [String]
|
18141
|
+
#
|
17602
18142
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialMapVisual AWS API Documentation
|
17603
18143
|
#
|
17604
18144
|
class GeospatialMapVisual < Struct.new(
|
@@ -17607,7 +18147,74 @@ module Aws::QuickSight
|
|
17607
18147
|
:subtitle,
|
17608
18148
|
:chart_configuration,
|
17609
18149
|
:column_hierarchies,
|
17610
|
-
:actions
|
18150
|
+
:actions,
|
18151
|
+
:visual_content_alt_text)
|
18152
|
+
SENSITIVE = []
|
18153
|
+
include Aws::Structure
|
18154
|
+
end
|
18155
|
+
|
18156
|
+
# The properties for the visualization of null data.
|
18157
|
+
#
|
18158
|
+
# @!attribute [rw] symbol_style
|
18159
|
+
# The symbol style for null data.
|
18160
|
+
# @return [Types::GeospatialNullSymbolStyle]
|
18161
|
+
#
|
18162
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialNullDataSettings AWS API Documentation
|
18163
|
+
#
|
18164
|
+
class GeospatialNullDataSettings < Struct.new(
|
18165
|
+
:symbol_style)
|
18166
|
+
SENSITIVE = []
|
18167
|
+
include Aws::Structure
|
18168
|
+
end
|
18169
|
+
|
18170
|
+
# The symbol style for null data.
|
18171
|
+
#
|
18172
|
+
# @!attribute [rw] fill_color
|
18173
|
+
# The color and opacity values for the fill color.
|
18174
|
+
# @return [String]
|
18175
|
+
#
|
18176
|
+
# @!attribute [rw] stroke_color
|
18177
|
+
# The color and opacity values for the stroke color.
|
18178
|
+
# @return [String]
|
18179
|
+
#
|
18180
|
+
# @!attribute [rw] stroke_width
|
18181
|
+
# The width of the border stroke.
|
18182
|
+
# @return [Float]
|
18183
|
+
#
|
18184
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialNullSymbolStyle AWS API Documentation
|
18185
|
+
#
|
18186
|
+
class GeospatialNullSymbolStyle < Struct.new(
|
18187
|
+
:fill_color,
|
18188
|
+
:stroke_color,
|
18189
|
+
:stroke_width)
|
18190
|
+
SENSITIVE = []
|
18191
|
+
include Aws::Structure
|
18192
|
+
end
|
18193
|
+
|
18194
|
+
# The geospatial Point layer.
|
18195
|
+
#
|
18196
|
+
# @!attribute [rw] style
|
18197
|
+
# The visualization style for a point layer.
|
18198
|
+
# @return [Types::GeospatialPointStyle]
|
18199
|
+
#
|
18200
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialPointLayer AWS API Documentation
|
18201
|
+
#
|
18202
|
+
class GeospatialPointLayer < Struct.new(
|
18203
|
+
:style)
|
18204
|
+
SENSITIVE = []
|
18205
|
+
include Aws::Structure
|
18206
|
+
end
|
18207
|
+
|
18208
|
+
# The point style for a point layer.
|
18209
|
+
#
|
18210
|
+
# @!attribute [rw] circle_symbol_style
|
18211
|
+
# The circle symbol style for a point layer.
|
18212
|
+
# @return [Types::GeospatialCircleSymbolStyle]
|
18213
|
+
#
|
18214
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialPointStyle AWS API Documentation
|
18215
|
+
#
|
18216
|
+
class GeospatialPointStyle < Struct.new(
|
18217
|
+
:circle_symbol_style)
|
17611
18218
|
SENSITIVE = []
|
17612
18219
|
include Aws::Structure
|
17613
18220
|
end
|
@@ -17636,6 +18243,91 @@ module Aws::QuickSight
|
|
17636
18243
|
include Aws::Structure
|
17637
18244
|
end
|
17638
18245
|
|
18246
|
+
# The geospatial polygon layer.
|
18247
|
+
#
|
18248
|
+
# @!attribute [rw] style
|
18249
|
+
# The visualization style for a polygon layer.
|
18250
|
+
# @return [Types::GeospatialPolygonStyle]
|
18251
|
+
#
|
18252
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialPolygonLayer AWS API Documentation
|
18253
|
+
#
|
18254
|
+
class GeospatialPolygonLayer < Struct.new(
|
18255
|
+
:style)
|
18256
|
+
SENSITIVE = []
|
18257
|
+
include Aws::Structure
|
18258
|
+
end
|
18259
|
+
|
18260
|
+
# The polygon style for a polygon layer.
|
18261
|
+
#
|
18262
|
+
# @!attribute [rw] polygon_symbol_style
|
18263
|
+
# The polygon symbol style for a polygon layer.
|
18264
|
+
# @return [Types::GeospatialPolygonSymbolStyle]
|
18265
|
+
#
|
18266
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialPolygonStyle AWS API Documentation
|
18267
|
+
#
|
18268
|
+
class GeospatialPolygonStyle < Struct.new(
|
18269
|
+
:polygon_symbol_style)
|
18270
|
+
SENSITIVE = []
|
18271
|
+
include Aws::Structure
|
18272
|
+
end
|
18273
|
+
|
18274
|
+
# The polygon symbol style for a polygon layer.
|
18275
|
+
#
|
18276
|
+
# @!attribute [rw] fill_color
|
18277
|
+
# The color and opacity values for the fill color.
|
18278
|
+
# @return [Types::GeospatialColor]
|
18279
|
+
#
|
18280
|
+
# @!attribute [rw] stroke_color
|
18281
|
+
# The color and opacity values for the stroke color.
|
18282
|
+
# @return [Types::GeospatialColor]
|
18283
|
+
#
|
18284
|
+
# @!attribute [rw] stroke_width
|
18285
|
+
# The width of the border stroke.
|
18286
|
+
# @return [Types::GeospatialLineWidth]
|
18287
|
+
#
|
18288
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialPolygonSymbolStyle AWS API Documentation
|
18289
|
+
#
|
18290
|
+
class GeospatialPolygonSymbolStyle < Struct.new(
|
18291
|
+
:fill_color,
|
18292
|
+
:stroke_color,
|
18293
|
+
:stroke_width)
|
18294
|
+
SENSITIVE = []
|
18295
|
+
include Aws::Structure
|
18296
|
+
end
|
18297
|
+
|
18298
|
+
# The definition for a solid color.
|
18299
|
+
#
|
18300
|
+
# @!attribute [rw] color
|
18301
|
+
# The color and opacity values for the color.
|
18302
|
+
# @return [String]
|
18303
|
+
#
|
18304
|
+
# @!attribute [rw] state
|
18305
|
+
# Enables and disables the view state of the color.
|
18306
|
+
# @return [String]
|
18307
|
+
#
|
18308
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialSolidColor AWS API Documentation
|
18309
|
+
#
|
18310
|
+
class GeospatialSolidColor < Struct.new(
|
18311
|
+
:color,
|
18312
|
+
:state)
|
18313
|
+
SENSITIVE = []
|
18314
|
+
include Aws::Structure
|
18315
|
+
end
|
18316
|
+
|
18317
|
+
# The source properties for a geospatial static file.
|
18318
|
+
#
|
18319
|
+
# @!attribute [rw] static_file_id
|
18320
|
+
# The ID of the static file.
|
18321
|
+
# @return [String]
|
18322
|
+
#
|
18323
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GeospatialStaticFileSource AWS API Documentation
|
18324
|
+
#
|
18325
|
+
class GeospatialStaticFileSource < Struct.new(
|
18326
|
+
:static_file_id)
|
18327
|
+
SENSITIVE = []
|
18328
|
+
include Aws::Structure
|
18329
|
+
end
|
18330
|
+
|
17639
18331
|
# The window options of the geospatial map visual.
|
17640
18332
|
#
|
17641
18333
|
# @!attribute [rw] bounds
|
@@ -18336,6 +19028,10 @@ module Aws::QuickSight
|
|
18336
19028
|
# The list of custom actions that are configured for a visual.
|
18337
19029
|
# @return [Array<Types::VisualCustomAction>]
|
18338
19030
|
#
|
19031
|
+
# @!attribute [rw] visual_content_alt_text
|
19032
|
+
# The alt text for the visual.
|
19033
|
+
# @return [String]
|
19034
|
+
#
|
18339
19035
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/HeatMapVisual AWS API Documentation
|
18340
19036
|
#
|
18341
19037
|
class HeatMapVisual < Struct.new(
|
@@ -18344,7 +19040,8 @@ module Aws::QuickSight
|
|
18344
19040
|
:subtitle,
|
18345
19041
|
:chart_configuration,
|
18346
19042
|
:column_hierarchies,
|
18347
|
-
:actions
|
19043
|
+
:actions,
|
19044
|
+
:visual_content_alt_text)
|
18348
19045
|
SENSITIVE = []
|
18349
19046
|
include Aws::Structure
|
18350
19047
|
end
|
@@ -18493,6 +19190,10 @@ module Aws::QuickSight
|
|
18493
19190
|
# The list of custom actions that are configured for a visual.
|
18494
19191
|
# @return [Array<Types::VisualCustomAction>]
|
18495
19192
|
#
|
19193
|
+
# @!attribute [rw] visual_content_alt_text
|
19194
|
+
# The alt text for the visual.
|
19195
|
+
# @return [String]
|
19196
|
+
#
|
18496
19197
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/HistogramVisual AWS API Documentation
|
18497
19198
|
#
|
18498
19199
|
class HistogramVisual < Struct.new(
|
@@ -18500,7 +19201,8 @@ module Aws::QuickSight
|
|
18500
19201
|
:title,
|
18501
19202
|
:subtitle,
|
18502
19203
|
:chart_configuration,
|
18503
|
-
:actions
|
19204
|
+
:actions,
|
19205
|
+
:visual_content_alt_text)
|
18504
19206
|
SENSITIVE = []
|
18505
19207
|
include Aws::Structure
|
18506
19208
|
end
|
@@ -18644,6 +19346,112 @@ module Aws::QuickSight
|
|
18644
19346
|
include Aws::Structure
|
18645
19347
|
end
|
18646
19348
|
|
19349
|
+
# A custom action defined on an image.
|
19350
|
+
#
|
19351
|
+
# @!attribute [rw] custom_action_id
|
19352
|
+
# The ID of the custom action.
|
19353
|
+
# @return [String]
|
19354
|
+
#
|
19355
|
+
# @!attribute [rw] name
|
19356
|
+
# The name of the custom action.
|
19357
|
+
# @return [String]
|
19358
|
+
#
|
19359
|
+
# @!attribute [rw] status
|
19360
|
+
# The status of the custom action.
|
19361
|
+
# @return [String]
|
19362
|
+
#
|
19363
|
+
# @!attribute [rw] trigger
|
19364
|
+
# The trigger of the `VisualCustomAction`.
|
19365
|
+
#
|
19366
|
+
# Valid values are defined as follows:
|
19367
|
+
#
|
19368
|
+
# * `CLICK`: Initiates a custom action by a left pointer click on a
|
19369
|
+
# data point.
|
19370
|
+
#
|
19371
|
+
# * `MENU`: Initiates a custom action by right pointer click from the
|
19372
|
+
# menu.
|
19373
|
+
# @return [String]
|
19374
|
+
#
|
19375
|
+
# @!attribute [rw] action_operations
|
19376
|
+
# A list of `ImageCustomActionOperations`.
|
19377
|
+
#
|
19378
|
+
# This is a union type structure. For this structure to be valid, only
|
19379
|
+
# one of the attributes can be defined.
|
19380
|
+
# @return [Array<Types::ImageCustomActionOperation>]
|
19381
|
+
#
|
19382
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ImageCustomAction AWS API Documentation
|
19383
|
+
#
|
19384
|
+
class ImageCustomAction < Struct.new(
|
19385
|
+
:custom_action_id,
|
19386
|
+
:name,
|
19387
|
+
:status,
|
19388
|
+
:trigger,
|
19389
|
+
:action_operations)
|
19390
|
+
SENSITIVE = []
|
19391
|
+
include Aws::Structure
|
19392
|
+
end
|
19393
|
+
|
19394
|
+
# The operation that is defined by the custom action.
|
19395
|
+
#
|
19396
|
+
# This is a union type structure. For this structure to be valid, only
|
19397
|
+
# one of the attributes can be defined.
|
19398
|
+
#
|
19399
|
+
# @!attribute [rw] navigation_operation
|
19400
|
+
# The navigation operation that navigates between different sheets in
|
19401
|
+
# the same analysis.
|
19402
|
+
#
|
19403
|
+
# This is a union type structure. For this structure to be valid, only
|
19404
|
+
# one of the attributes can be defined.
|
19405
|
+
# @return [Types::CustomActionNavigationOperation]
|
19406
|
+
#
|
19407
|
+
# @!attribute [rw] url_operation
|
19408
|
+
# The URL operation that opens a link to another webpage.
|
19409
|
+
# @return [Types::CustomActionURLOperation]
|
19410
|
+
#
|
19411
|
+
# @!attribute [rw] set_parameters_operation
|
19412
|
+
# The set parameter operation that sets parameters in custom action.
|
19413
|
+
# @return [Types::CustomActionSetParametersOperation]
|
19414
|
+
#
|
19415
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ImageCustomActionOperation AWS API Documentation
|
19416
|
+
#
|
19417
|
+
class ImageCustomActionOperation < Struct.new(
|
19418
|
+
:navigation_operation,
|
19419
|
+
:url_operation,
|
19420
|
+
:set_parameters_operation)
|
19421
|
+
SENSITIVE = []
|
19422
|
+
include Aws::Structure
|
19423
|
+
end
|
19424
|
+
|
19425
|
+
# The general image interactions setup for image publish options.
|
19426
|
+
#
|
19427
|
+
# @!attribute [rw] image_menu_option
|
19428
|
+
# The menu options for the image.
|
19429
|
+
# @return [Types::ImageMenuOption]
|
19430
|
+
#
|
19431
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ImageInteractionOptions AWS API Documentation
|
19432
|
+
#
|
19433
|
+
class ImageInteractionOptions < Struct.new(
|
19434
|
+
:image_menu_option)
|
19435
|
+
SENSITIVE = []
|
19436
|
+
include Aws::Structure
|
19437
|
+
end
|
19438
|
+
|
19439
|
+
# The menu options for the interactions of an image.
|
19440
|
+
#
|
19441
|
+
# @!attribute [rw] availability_status
|
19442
|
+
# The availability status of the image menu. If the value of this
|
19443
|
+
# property is set to `ENABLED`, dashboard readers can interact with
|
19444
|
+
# the image menu.
|
19445
|
+
# @return [String]
|
19446
|
+
#
|
19447
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ImageMenuOption AWS API Documentation
|
19448
|
+
#
|
19449
|
+
class ImageMenuOption < Struct.new(
|
19450
|
+
:availability_status)
|
19451
|
+
SENSITIVE = []
|
19452
|
+
include Aws::Structure
|
19453
|
+
end
|
19454
|
+
|
18647
19455
|
# The image set.
|
18648
19456
|
#
|
18649
19457
|
# @!attribute [rw] original
|
@@ -18711,6 +19519,25 @@ module Aws::QuickSight
|
|
18711
19519
|
class Unknown < ImageSource; end
|
18712
19520
|
end
|
18713
19521
|
|
19522
|
+
# A static file that contains an image.
|
19523
|
+
#
|
19524
|
+
# @!attribute [rw] static_file_id
|
19525
|
+
# The ID of the static file that contains an image.
|
19526
|
+
# @return [String]
|
19527
|
+
#
|
19528
|
+
# @!attribute [rw] source
|
19529
|
+
# The source of the image static file.
|
19530
|
+
# @return [Types::StaticFileSource]
|
19531
|
+
#
|
19532
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ImageStaticFile AWS API Documentation
|
19533
|
+
#
|
19534
|
+
class ImageStaticFile < Struct.new(
|
19535
|
+
:static_file_id,
|
19536
|
+
:source)
|
19537
|
+
SENSITIVE = []
|
19538
|
+
include Aws::Structure
|
19539
|
+
end
|
19540
|
+
|
18714
19541
|
# The incremental refresh configuration for a dataset.
|
18715
19542
|
#
|
18716
19543
|
# @!attribute [rw] lookback_window
|
@@ -18890,6 +19717,10 @@ module Aws::QuickSight
|
|
18890
19717
|
# The dataset that is used in the insight visual.
|
18891
19718
|
# @return [String]
|
18892
19719
|
#
|
19720
|
+
# @!attribute [rw] visual_content_alt_text
|
19721
|
+
# The alt text for the visual.
|
19722
|
+
# @return [String]
|
19723
|
+
#
|
18893
19724
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/InsightVisual AWS API Documentation
|
18894
19725
|
#
|
18895
19726
|
class InsightVisual < Struct.new(
|
@@ -18898,7 +19729,8 @@ module Aws::QuickSight
|
|
18898
19729
|
:subtitle,
|
18899
19730
|
:insight_configuration,
|
18900
19731
|
:actions,
|
18901
|
-
:data_set_identifier
|
19732
|
+
:data_set_identifier,
|
19733
|
+
:visual_content_alt_text)
|
18902
19734
|
SENSITIVE = []
|
18903
19735
|
include Aws::Structure
|
18904
19736
|
end
|
@@ -19561,6 +20393,10 @@ module Aws::QuickSight
|
|
19561
20393
|
# The column hierarchy that is used during drill-downs and drill-ups.
|
19562
20394
|
# @return [Array<Types::ColumnHierarchy>]
|
19563
20395
|
#
|
20396
|
+
# @!attribute [rw] visual_content_alt_text
|
20397
|
+
# The alt text for the visual.
|
20398
|
+
# @return [String]
|
20399
|
+
#
|
19564
20400
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/KPIVisual AWS API Documentation
|
19565
20401
|
#
|
19566
20402
|
class KPIVisual < Struct.new(
|
@@ -19570,7 +20406,8 @@ module Aws::QuickSight
|
|
19570
20406
|
:chart_configuration,
|
19571
20407
|
:conditional_formatting,
|
19572
20408
|
:actions,
|
19573
|
-
:column_hierarchies
|
20409
|
+
:column_hierarchies,
|
20410
|
+
:visual_content_alt_text)
|
19574
20411
|
SENSITIVE = []
|
19575
20412
|
include Aws::Structure
|
19576
20413
|
end
|
@@ -19627,6 +20464,128 @@ module Aws::QuickSight
|
|
19627
20464
|
include Aws::Structure
|
19628
20465
|
end
|
19629
20466
|
|
20467
|
+
# A layer custom action.
|
20468
|
+
#
|
20469
|
+
# @!attribute [rw] custom_action_id
|
20470
|
+
# The ID of the custom action.
|
20471
|
+
# @return [String]
|
20472
|
+
#
|
20473
|
+
# @!attribute [rw] name
|
20474
|
+
# The name of the custom action.
|
20475
|
+
# @return [String]
|
20476
|
+
#
|
20477
|
+
# @!attribute [rw] status
|
20478
|
+
# The status of the `LayerCustomAction`.
|
20479
|
+
# @return [String]
|
20480
|
+
#
|
20481
|
+
# @!attribute [rw] trigger
|
20482
|
+
# The trigger of the `LayerCustomAction`.
|
20483
|
+
#
|
20484
|
+
# Valid values are defined as follows:
|
20485
|
+
#
|
20486
|
+
# * `DATA_POINT_CLICK`: Initiates a custom action by a left pointer
|
20487
|
+
# click on a data point.
|
20488
|
+
#
|
20489
|
+
# * `DATA_POINT_MENU`: Initiates a custom action by right pointer
|
20490
|
+
# click from the menu.
|
20491
|
+
# @return [String]
|
20492
|
+
#
|
20493
|
+
# @!attribute [rw] action_operations
|
20494
|
+
# A list of `LayerCustomActionOperations`.
|
20495
|
+
#
|
20496
|
+
# This is a union type structure. For this structure to be valid, only
|
20497
|
+
# one of the attributes can be defined.
|
20498
|
+
# @return [Array<Types::LayerCustomActionOperation>]
|
20499
|
+
#
|
20500
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/LayerCustomAction AWS API Documentation
|
20501
|
+
#
|
20502
|
+
class LayerCustomAction < Struct.new(
|
20503
|
+
:custom_action_id,
|
20504
|
+
:name,
|
20505
|
+
:status,
|
20506
|
+
:trigger,
|
20507
|
+
:action_operations)
|
20508
|
+
SENSITIVE = []
|
20509
|
+
include Aws::Structure
|
20510
|
+
end
|
20511
|
+
|
20512
|
+
# The operation that is defined by the custom action.
|
20513
|
+
#
|
20514
|
+
# This is a union type structure. For this structure to be valid, only
|
20515
|
+
# one of the attributes can be defined.
|
20516
|
+
#
|
20517
|
+
# @!attribute [rw] filter_operation
|
20518
|
+
# The filter operation that filters data included in a visual or in an
|
20519
|
+
# entire sheet.
|
20520
|
+
# @return [Types::CustomActionFilterOperation]
|
20521
|
+
#
|
20522
|
+
# @!attribute [rw] navigation_operation
|
20523
|
+
# The navigation operation that navigates between different sheets in
|
20524
|
+
# the same analysis.
|
20525
|
+
#
|
20526
|
+
# This is a union type structure. For this structure to be valid, only
|
20527
|
+
# one of the attributes can be defined.
|
20528
|
+
# @return [Types::CustomActionNavigationOperation]
|
20529
|
+
#
|
20530
|
+
# @!attribute [rw] url_operation
|
20531
|
+
# The URL operation that opens a link to another webpage.
|
20532
|
+
# @return [Types::CustomActionURLOperation]
|
20533
|
+
#
|
20534
|
+
# @!attribute [rw] set_parameters_operation
|
20535
|
+
# The set parameter operation that sets parameters in custom action.
|
20536
|
+
# @return [Types::CustomActionSetParametersOperation]
|
20537
|
+
#
|
20538
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/LayerCustomActionOperation AWS API Documentation
|
20539
|
+
#
|
20540
|
+
class LayerCustomActionOperation < Struct.new(
|
20541
|
+
:filter_operation,
|
20542
|
+
:navigation_operation,
|
20543
|
+
:url_operation,
|
20544
|
+
:set_parameters_operation)
|
20545
|
+
SENSITIVE = []
|
20546
|
+
include Aws::Structure
|
20547
|
+
end
|
20548
|
+
|
20549
|
+
# A layer map visual.
|
20550
|
+
#
|
20551
|
+
# @!attribute [rw] visual_id
|
20552
|
+
# The ID of the visual.
|
20553
|
+
# @return [String]
|
20554
|
+
#
|
20555
|
+
# @!attribute [rw] title
|
20556
|
+
# The title label options for a visual.
|
20557
|
+
# @return [Types::VisualTitleLabelOptions]
|
20558
|
+
#
|
20559
|
+
# @!attribute [rw] subtitle
|
20560
|
+
# The subtitle label options for a visual.
|
20561
|
+
# @return [Types::VisualSubtitleLabelOptions]
|
20562
|
+
#
|
20563
|
+
# @!attribute [rw] chart_configuration
|
20564
|
+
# The configuration settings of the visual.
|
20565
|
+
# @return [Types::GeospatialLayerMapConfiguration]
|
20566
|
+
#
|
20567
|
+
# @!attribute [rw] data_set_identifier
|
20568
|
+
# The dataset that is used to create the layer map visual. You can't
|
20569
|
+
# create a visual without a dataset.
|
20570
|
+
# @return [String]
|
20571
|
+
#
|
20572
|
+
# @!attribute [rw] visual_content_alt_text
|
20573
|
+
# The alt text for the visual.
|
20574
|
+
# @return [String]
|
20575
|
+
#
|
20576
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/LayerMapVisual AWS API Documentation
|
20577
|
+
#
|
20578
|
+
class LayerMapVisual < Struct.new(
|
20579
|
+
:visual_id,
|
20580
|
+
:title,
|
20581
|
+
:subtitle,
|
20582
|
+
:chart_configuration,
|
20583
|
+
:data_set_identifier,
|
20584
|
+
:visual_content_alt_text)
|
20585
|
+
SENSITIVE = []
|
20586
|
+
include Aws::Structure
|
20587
|
+
end
|
20588
|
+
|
19630
20589
|
# A `Layout` defines the placement of elements within a sheet.
|
19631
20590
|
#
|
19632
20591
|
# For more information, see [Types of layout][1] in the *Amazon
|
@@ -19719,6 +20678,10 @@ module Aws::QuickSight
|
|
19719
20678
|
# is used when rendering.
|
19720
20679
|
# @return [String]
|
19721
20680
|
#
|
20681
|
+
# @!attribute [rw] value_font_configuration
|
20682
|
+
# Configures the display properties of the given text.
|
20683
|
+
# @return [Types::FontConfiguration]
|
20684
|
+
#
|
19722
20685
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/LegendOptions AWS API Documentation
|
19723
20686
|
#
|
19724
20687
|
class LegendOptions < Struct.new(
|
@@ -19726,7 +20689,8 @@ module Aws::QuickSight
|
|
19726
20689
|
:title,
|
19727
20690
|
:position,
|
19728
20691
|
:width,
|
19729
|
-
:height
|
20692
|
+
:height,
|
20693
|
+
:value_font_configuration)
|
19730
20694
|
SENSITIVE = []
|
19731
20695
|
include Aws::Structure
|
19732
20696
|
end
|
@@ -20115,6 +21079,10 @@ module Aws::QuickSight
|
|
20115
21079
|
# The column hierarchy that is used during drill-downs and drill-ups.
|
20116
21080
|
# @return [Array<Types::ColumnHierarchy>]
|
20117
21081
|
#
|
21082
|
+
# @!attribute [rw] visual_content_alt_text
|
21083
|
+
# The alt text for the visual.
|
21084
|
+
# @return [String]
|
21085
|
+
#
|
20118
21086
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/LineChartVisual AWS API Documentation
|
20119
21087
|
#
|
20120
21088
|
class LineChartVisual < Struct.new(
|
@@ -20123,7 +21091,8 @@ module Aws::QuickSight
|
|
20123
21091
|
:subtitle,
|
20124
21092
|
:chart_configuration,
|
20125
21093
|
:actions,
|
20126
|
-
:column_hierarchies
|
21094
|
+
:column_hierarchies,
|
21095
|
+
:visual_content_alt_text)
|
20127
21096
|
SENSITIVE = []
|
20128
21097
|
include Aws::Structure
|
20129
21098
|
end
|
@@ -22683,6 +23652,15 @@ module Aws::QuickSight
|
|
22683
23652
|
# An error that occurred when the namespace was created.
|
22684
23653
|
# @return [Types::NamespaceError]
|
22685
23654
|
#
|
23655
|
+
# @!attribute [rw] iam_identity_center_application_arn
|
23656
|
+
# The Amazon Resource Name (ARN) for the IAM Identity Center
|
23657
|
+
# application.
|
23658
|
+
# @return [String]
|
23659
|
+
#
|
23660
|
+
# @!attribute [rw] iam_identity_center_instance_arn
|
23661
|
+
# The Amazon Resource Name (ARN) for the IAM Identity Center instance.
|
23662
|
+
# @return [String]
|
23663
|
+
#
|
22686
23664
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/NamespaceInfoV2 AWS API Documentation
|
22687
23665
|
#
|
22688
23666
|
class NamespaceInfoV2 < Struct.new(
|
@@ -22691,7 +23669,9 @@ module Aws::QuickSight
|
|
22691
23669
|
:capacity_region,
|
22692
23670
|
:creation_status,
|
22693
23671
|
:identity_store,
|
22694
|
-
:namespace_error
|
23672
|
+
:namespace_error,
|
23673
|
+
:iam_identity_center_application_arn,
|
23674
|
+
:iam_identity_center_instance_arn)
|
22695
23675
|
SENSITIVE = []
|
22696
23676
|
include Aws::Structure
|
22697
23677
|
end
|
@@ -24239,6 +25219,10 @@ module Aws::QuickSight
|
|
24239
25219
|
# The column hierarchy that is used during drill-downs and drill-ups.
|
24240
25220
|
# @return [Array<Types::ColumnHierarchy>]
|
24241
25221
|
#
|
25222
|
+
# @!attribute [rw] visual_content_alt_text
|
25223
|
+
# The alt text for the visual.
|
25224
|
+
# @return [String]
|
25225
|
+
#
|
24242
25226
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PieChartVisual AWS API Documentation
|
24243
25227
|
#
|
24244
25228
|
class PieChartVisual < Struct.new(
|
@@ -24247,7 +25231,8 @@ module Aws::QuickSight
|
|
24247
25231
|
:subtitle,
|
24248
25232
|
:chart_configuration,
|
24249
25233
|
:actions,
|
24250
|
-
:column_hierarchies
|
25234
|
+
:column_hierarchies,
|
25235
|
+
:visual_content_alt_text)
|
24251
25236
|
SENSITIVE = []
|
24252
25237
|
include Aws::Structure
|
24253
25238
|
end
|
@@ -24790,6 +25775,10 @@ module Aws::QuickSight
|
|
24790
25775
|
# The list of custom actions that are configured for a visual.
|
24791
25776
|
# @return [Array<Types::VisualCustomAction>]
|
24792
25777
|
#
|
25778
|
+
# @!attribute [rw] visual_content_alt_text
|
25779
|
+
# The alt text for the visual.
|
25780
|
+
# @return [String]
|
25781
|
+
#
|
24793
25782
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PivotTableVisual AWS API Documentation
|
24794
25783
|
#
|
24795
25784
|
class PivotTableVisual < Struct.new(
|
@@ -24798,7 +25787,8 @@ module Aws::QuickSight
|
|
24798
25787
|
:subtitle,
|
24799
25788
|
:chart_configuration,
|
24800
25789
|
:conditional_formatting,
|
24801
|
-
:actions
|
25790
|
+
:actions,
|
25791
|
+
:visual_content_alt_text)
|
24802
25792
|
SENSITIVE = []
|
24803
25793
|
include Aws::Structure
|
24804
25794
|
end
|
@@ -24852,6 +25842,181 @@ module Aws::QuickSight
|
|
24852
25842
|
include Aws::Structure
|
24853
25843
|
end
|
24854
25844
|
|
25845
|
+
# A flexible visualization type that allows engineers to create new
|
25846
|
+
# custom charts in Amazon QuickSight.
|
25847
|
+
#
|
25848
|
+
# @!attribute [rw] visual_id
|
25849
|
+
# The ID of the visual that you want to use.
|
25850
|
+
# @return [String]
|
25851
|
+
#
|
25852
|
+
# @!attribute [rw] plugin_arn
|
25853
|
+
# The Amazon Resource Name (ARN) that reflects the plugin and version.
|
25854
|
+
# @return [String]
|
25855
|
+
#
|
25856
|
+
# @!attribute [rw] title
|
25857
|
+
# The title label options for a visual.
|
25858
|
+
# @return [Types::VisualTitleLabelOptions]
|
25859
|
+
#
|
25860
|
+
# @!attribute [rw] subtitle
|
25861
|
+
# The subtitle label options for a visual.
|
25862
|
+
# @return [Types::VisualSubtitleLabelOptions]
|
25863
|
+
#
|
25864
|
+
# @!attribute [rw] chart_configuration
|
25865
|
+
# A description of the plugin field wells and their persisted
|
25866
|
+
# properties.
|
25867
|
+
# @return [Types::PluginVisualConfiguration]
|
25868
|
+
#
|
25869
|
+
# @!attribute [rw] visual_content_alt_text
|
25870
|
+
# The alt text for the visual.
|
25871
|
+
# @return [String]
|
25872
|
+
#
|
25873
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PluginVisual AWS API Documentation
|
25874
|
+
#
|
25875
|
+
class PluginVisual < Struct.new(
|
25876
|
+
:visual_id,
|
25877
|
+
:plugin_arn,
|
25878
|
+
:title,
|
25879
|
+
:subtitle,
|
25880
|
+
:chart_configuration,
|
25881
|
+
:visual_content_alt_text)
|
25882
|
+
SENSITIVE = []
|
25883
|
+
include Aws::Structure
|
25884
|
+
end
|
25885
|
+
|
25886
|
+
# The plugin visual configuration. This includes the field wells,
|
25887
|
+
# sorting options, and persisted options of the plugin visual.
|
25888
|
+
#
|
25889
|
+
# @!attribute [rw] field_wells
|
25890
|
+
# The field wells configuration of the plugin visual.
|
25891
|
+
# @return [Array<Types::PluginVisualFieldWell>]
|
25892
|
+
#
|
25893
|
+
# @!attribute [rw] visual_options
|
25894
|
+
# The persisted properties of the plugin visual.
|
25895
|
+
# @return [Types::PluginVisualOptions]
|
25896
|
+
#
|
25897
|
+
# @!attribute [rw] sort_configuration
|
25898
|
+
# The sort configuration of the plugin visual.
|
25899
|
+
# @return [Types::PluginVisualSortConfiguration]
|
25900
|
+
#
|
25901
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PluginVisualConfiguration AWS API Documentation
|
25902
|
+
#
|
25903
|
+
class PluginVisualConfiguration < Struct.new(
|
25904
|
+
:field_wells,
|
25905
|
+
:visual_options,
|
25906
|
+
:sort_configuration)
|
25907
|
+
SENSITIVE = []
|
25908
|
+
include Aws::Structure
|
25909
|
+
end
|
25910
|
+
|
25911
|
+
# A collection of field wells for a plugin visual.
|
25912
|
+
#
|
25913
|
+
# @!attribute [rw] axis_name
|
25914
|
+
# The semantic axis name for the field well.
|
25915
|
+
# @return [String]
|
25916
|
+
#
|
25917
|
+
# @!attribute [rw] dimensions
|
25918
|
+
# A list of dimensions for the field well.
|
25919
|
+
# @return [Array<Types::DimensionField>]
|
25920
|
+
#
|
25921
|
+
# @!attribute [rw] measures
|
25922
|
+
# A list of measures that exist in the field well.
|
25923
|
+
# @return [Array<Types::MeasureField>]
|
25924
|
+
#
|
25925
|
+
# @!attribute [rw] unaggregated
|
25926
|
+
# A list of unaggregated fields that exist in the field well.
|
25927
|
+
# @return [Array<Types::UnaggregatedField>]
|
25928
|
+
#
|
25929
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PluginVisualFieldWell AWS API Documentation
|
25930
|
+
#
|
25931
|
+
class PluginVisualFieldWell < Struct.new(
|
25932
|
+
:axis_name,
|
25933
|
+
:dimensions,
|
25934
|
+
:measures,
|
25935
|
+
:unaggregated)
|
25936
|
+
SENSITIVE = []
|
25937
|
+
include Aws::Structure
|
25938
|
+
end
|
25939
|
+
|
25940
|
+
# A query limits configuration.
|
25941
|
+
#
|
25942
|
+
# @!attribute [rw] items_limit
|
25943
|
+
# Determines how many values are be fetched at once.
|
25944
|
+
# @return [Integer]
|
25945
|
+
#
|
25946
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PluginVisualItemsLimitConfiguration AWS API Documentation
|
25947
|
+
#
|
25948
|
+
class PluginVisualItemsLimitConfiguration < Struct.new(
|
25949
|
+
:items_limit)
|
25950
|
+
SENSITIVE = []
|
25951
|
+
include Aws::Structure
|
25952
|
+
end
|
25953
|
+
|
25954
|
+
# The options and persisted properties for the plugin visual.
|
25955
|
+
#
|
25956
|
+
# @!attribute [rw] visual_properties
|
25957
|
+
# The persisted properties and their values.
|
25958
|
+
# @return [Array<Types::PluginVisualProperty>]
|
25959
|
+
#
|
25960
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PluginVisualOptions AWS API Documentation
|
25961
|
+
#
|
25962
|
+
class PluginVisualOptions < Struct.new(
|
25963
|
+
:visual_properties)
|
25964
|
+
SENSITIVE = []
|
25965
|
+
include Aws::Structure
|
25966
|
+
end
|
25967
|
+
|
25968
|
+
# The key value pair of the persisted property.
|
25969
|
+
#
|
25970
|
+
# @!attribute [rw] name
|
25971
|
+
# The name of the plugin visual property.
|
25972
|
+
# @return [String]
|
25973
|
+
#
|
25974
|
+
# @!attribute [rw] value
|
25975
|
+
# The value of the plugin visual property.
|
25976
|
+
# @return [String]
|
25977
|
+
#
|
25978
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PluginVisualProperty AWS API Documentation
|
25979
|
+
#
|
25980
|
+
class PluginVisualProperty < Struct.new(
|
25981
|
+
:name,
|
25982
|
+
:value)
|
25983
|
+
SENSITIVE = []
|
25984
|
+
include Aws::Structure
|
25985
|
+
end
|
25986
|
+
|
25987
|
+
# Determines how the plugin visual sorts the data during query.
|
25988
|
+
#
|
25989
|
+
# @!attribute [rw] plugin_visual_table_query_sort
|
25990
|
+
# The table query sorting options for the plugin visual.
|
25991
|
+
# @return [Types::PluginVisualTableQuerySort]
|
25992
|
+
#
|
25993
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PluginVisualSortConfiguration AWS API Documentation
|
25994
|
+
#
|
25995
|
+
class PluginVisualSortConfiguration < Struct.new(
|
25996
|
+
:plugin_visual_table_query_sort)
|
25997
|
+
SENSITIVE = []
|
25998
|
+
include Aws::Structure
|
25999
|
+
end
|
26000
|
+
|
26001
|
+
# The table query sorting options for the plugin visual.
|
26002
|
+
#
|
26003
|
+
# @!attribute [rw] row_sort
|
26004
|
+
# Determines how data is sorted in the response.
|
26005
|
+
# @return [Array<Types::FieldSortOptions>]
|
26006
|
+
#
|
26007
|
+
# @!attribute [rw] items_limit_configuration
|
26008
|
+
# The maximum amount of data to be returned by a query.
|
26009
|
+
# @return [Types::PluginVisualItemsLimitConfiguration]
|
26010
|
+
#
|
26011
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PluginVisualTableQuerySort AWS API Documentation
|
26012
|
+
#
|
26013
|
+
class PluginVisualTableQuerySort < Struct.new(
|
26014
|
+
:row_sort,
|
26015
|
+
:items_limit_configuration)
|
26016
|
+
SENSITIVE = []
|
26017
|
+
include Aws::Structure
|
26018
|
+
end
|
26019
|
+
|
24855
26020
|
# The parameters for PostgreSQL.
|
24856
26021
|
#
|
24857
26022
|
# @!attribute [rw] host
|
@@ -25284,6 +26449,10 @@ module Aws::QuickSight
|
|
25284
26449
|
# The column hierarchy that is used during drill-downs and drill-ups.
|
25285
26450
|
# @return [Array<Types::ColumnHierarchy>]
|
25286
26451
|
#
|
26452
|
+
# @!attribute [rw] visual_content_alt_text
|
26453
|
+
# The alt text for the visual.
|
26454
|
+
# @return [String]
|
26455
|
+
#
|
25287
26456
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/RadarChartVisual AWS API Documentation
|
25288
26457
|
#
|
25289
26458
|
class RadarChartVisual < Struct.new(
|
@@ -25292,7 +26461,8 @@ module Aws::QuickSight
|
|
25292
26461
|
:subtitle,
|
25293
26462
|
:chart_configuration,
|
25294
26463
|
:actions,
|
25295
|
-
:column_hierarchies
|
26464
|
+
:column_hierarchies,
|
26465
|
+
:visual_content_alt_text)
|
25296
26466
|
SENSITIVE = []
|
25297
26467
|
include Aws::Structure
|
25298
26468
|
end
|
@@ -27041,6 +28211,10 @@ module Aws::QuickSight
|
|
27041
28211
|
# The list of custom actions that are configured for a visual.
|
27042
28212
|
# @return [Array<Types::VisualCustomAction>]
|
27043
28213
|
#
|
28214
|
+
# @!attribute [rw] visual_content_alt_text
|
28215
|
+
# The alt text for the visual.
|
28216
|
+
# @return [String]
|
28217
|
+
#
|
27044
28218
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SankeyDiagramVisual AWS API Documentation
|
27045
28219
|
#
|
27046
28220
|
class SankeyDiagramVisual < Struct.new(
|
@@ -27048,7 +28222,8 @@ module Aws::QuickSight
|
|
27048
28222
|
:title,
|
27049
28223
|
:subtitle,
|
27050
28224
|
:chart_configuration,
|
27051
|
-
:actions
|
28225
|
+
:actions,
|
28226
|
+
:visual_content_alt_text)
|
27052
28227
|
SENSITIVE = []
|
27053
28228
|
include Aws::Structure
|
27054
28229
|
end
|
@@ -27272,6 +28447,10 @@ module Aws::QuickSight
|
|
27272
28447
|
# The column hierarchy that is used during drill-downs and drill-ups.
|
27273
28448
|
# @return [Array<Types::ColumnHierarchy>]
|
27274
28449
|
#
|
28450
|
+
# @!attribute [rw] visual_content_alt_text
|
28451
|
+
# The alt text for the visual.
|
28452
|
+
# @return [String]
|
28453
|
+
#
|
27275
28454
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ScatterPlotVisual AWS API Documentation
|
27276
28455
|
#
|
27277
28456
|
class ScatterPlotVisual < Struct.new(
|
@@ -27280,7 +28459,8 @@ module Aws::QuickSight
|
|
27280
28459
|
:subtitle,
|
27281
28460
|
:chart_configuration,
|
27282
28461
|
:actions,
|
27283
|
-
:column_hierarchies
|
28462
|
+
:column_hierarchies,
|
28463
|
+
:visual_content_alt_text)
|
27284
28464
|
SENSITIVE = []
|
27285
28465
|
include Aws::Structure
|
27286
28466
|
end
|
@@ -27673,6 +28853,64 @@ module Aws::QuickSight
|
|
27673
28853
|
include Aws::Structure
|
27674
28854
|
end
|
27675
28855
|
|
28856
|
+
# @!attribute [rw] aws_account_id
|
28857
|
+
# The ID of the Amazon Web Services account that contains the topic
|
28858
|
+
# that you want to find.
|
28859
|
+
# @return [String]
|
28860
|
+
#
|
28861
|
+
# @!attribute [rw] filters
|
28862
|
+
# The filters that you want to use to search for the topic.
|
28863
|
+
# @return [Array<Types::TopicSearchFilter>]
|
28864
|
+
#
|
28865
|
+
# @!attribute [rw] next_token
|
28866
|
+
# The token for the next set of results, or null if there are no more
|
28867
|
+
# results.
|
28868
|
+
# @return [String]
|
28869
|
+
#
|
28870
|
+
# @!attribute [rw] max_results
|
28871
|
+
# The maximum number of results to be returned per request.
|
28872
|
+
# @return [Integer]
|
28873
|
+
#
|
28874
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SearchTopicsRequest AWS API Documentation
|
28875
|
+
#
|
28876
|
+
class SearchTopicsRequest < Struct.new(
|
28877
|
+
:aws_account_id,
|
28878
|
+
:filters,
|
28879
|
+
:next_token,
|
28880
|
+
:max_results)
|
28881
|
+
SENSITIVE = []
|
28882
|
+
include Aws::Structure
|
28883
|
+
end
|
28884
|
+
|
28885
|
+
# @!attribute [rw] topic_summary_list
|
28886
|
+
# A list of topic summaries that is returned by the search topic
|
28887
|
+
# request.
|
28888
|
+
# @return [Array<Types::TopicSummary>]
|
28889
|
+
#
|
28890
|
+
# @!attribute [rw] next_token
|
28891
|
+
# The token for the next set of results, or null if there are no more
|
28892
|
+
# results.
|
28893
|
+
# @return [String]
|
28894
|
+
#
|
28895
|
+
# @!attribute [rw] status
|
28896
|
+
# The HTTP status of the request.
|
28897
|
+
# @return [Integer]
|
28898
|
+
#
|
28899
|
+
# @!attribute [rw] request_id
|
28900
|
+
# The Amazon Web Services request ID for this operation.
|
28901
|
+
# @return [String]
|
28902
|
+
#
|
28903
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SearchTopicsResponse AWS API Documentation
|
28904
|
+
#
|
28905
|
+
class SearchTopicsResponse < Struct.new(
|
28906
|
+
:topic_summary_list,
|
28907
|
+
:next_token,
|
28908
|
+
:status,
|
28909
|
+
:request_id)
|
28910
|
+
SENSITIVE = []
|
28911
|
+
include Aws::Structure
|
28912
|
+
end
|
28913
|
+
|
27676
28914
|
# The options that determine the presentation of the secondary value of
|
27677
28915
|
# a KPI visual.
|
27678
28916
|
#
|
@@ -28059,11 +29297,16 @@ module Aws::QuickSight
|
|
28059
29297
|
# the Amazon QuickSight console.
|
28060
29298
|
# @return [String]
|
28061
29299
|
#
|
29300
|
+
# @!attribute [rw] images
|
29301
|
+
# A list of images on a sheet.
|
29302
|
+
# @return [Array<Types::SheetImage>]
|
29303
|
+
#
|
28062
29304
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/Sheet AWS API Documentation
|
28063
29305
|
#
|
28064
29306
|
class Sheet < Struct.new(
|
28065
29307
|
:sheet_id,
|
28066
|
-
:name
|
29308
|
+
:name,
|
29309
|
+
:images)
|
28067
29310
|
SENSITIVE = []
|
28068
29311
|
include Aws::Structure
|
28069
29312
|
end
|
@@ -28184,6 +29427,10 @@ module Aws::QuickSight
|
|
28184
29427
|
# The text boxes that are on a sheet.
|
28185
29428
|
# @return [Array<Types::SheetTextBox>]
|
28186
29429
|
#
|
29430
|
+
# @!attribute [rw] images
|
29431
|
+
# A list of images on a sheet.
|
29432
|
+
# @return [Array<Types::SheetImage>]
|
29433
|
+
#
|
28187
29434
|
# @!attribute [rw] layouts
|
28188
29435
|
# Layouts define how the components of a sheet are arranged.
|
28189
29436
|
#
|
@@ -28219,6 +29466,7 @@ module Aws::QuickSight
|
|
28219
29466
|
:filter_controls,
|
28220
29467
|
:visuals,
|
28221
29468
|
:text_boxes,
|
29469
|
+
:images,
|
28222
29470
|
:layouts,
|
28223
29471
|
:sheet_control_layouts,
|
28224
29472
|
:content_type)
|
@@ -28264,6 +29512,140 @@ module Aws::QuickSight
|
|
28264
29512
|
include Aws::Structure
|
28265
29513
|
end
|
28266
29514
|
|
29515
|
+
# An image that is located on a sheet.
|
29516
|
+
#
|
29517
|
+
# @!attribute [rw] sheet_image_id
|
29518
|
+
# The ID of the sheet image.
|
29519
|
+
# @return [String]
|
29520
|
+
#
|
29521
|
+
# @!attribute [rw] source
|
29522
|
+
# The source of the image.
|
29523
|
+
# @return [Types::SheetImageSource]
|
29524
|
+
#
|
29525
|
+
# @!attribute [rw] scaling
|
29526
|
+
# Determines how the image is scaled.
|
29527
|
+
# @return [Types::SheetImageScalingConfiguration]
|
29528
|
+
#
|
29529
|
+
# @!attribute [rw] tooltip
|
29530
|
+
# The tooltip to be shown when hovering over the image.
|
29531
|
+
# @return [Types::SheetImageTooltipConfiguration]
|
29532
|
+
#
|
29533
|
+
# @!attribute [rw] image_content_alt_text
|
29534
|
+
# The alt text for the image.
|
29535
|
+
# @return [String]
|
29536
|
+
#
|
29537
|
+
# @!attribute [rw] interactions
|
29538
|
+
# The general image interactions setup for an image.
|
29539
|
+
# @return [Types::ImageInteractionOptions]
|
29540
|
+
#
|
29541
|
+
# @!attribute [rw] actions
|
29542
|
+
# A list of custom actions that are configured for an image.
|
29543
|
+
# @return [Array<Types::ImageCustomAction>]
|
29544
|
+
#
|
29545
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SheetImage AWS API Documentation
|
29546
|
+
#
|
29547
|
+
class SheetImage < Struct.new(
|
29548
|
+
:sheet_image_id,
|
29549
|
+
:source,
|
29550
|
+
:scaling,
|
29551
|
+
:tooltip,
|
29552
|
+
:image_content_alt_text,
|
29553
|
+
:interactions,
|
29554
|
+
:actions)
|
29555
|
+
SENSITIVE = []
|
29556
|
+
include Aws::Structure
|
29557
|
+
end
|
29558
|
+
|
29559
|
+
# Determines how the image is scaled
|
29560
|
+
#
|
29561
|
+
# @!attribute [rw] scaling_type
|
29562
|
+
# The scaling option to use when fitting the image inside the
|
29563
|
+
# container.
|
29564
|
+
#
|
29565
|
+
# Valid values are defined as follows:
|
29566
|
+
#
|
29567
|
+
# * `SCALE_TO_WIDTH`: The image takes up the entire width of the
|
29568
|
+
# container. The image aspect ratio is preserved.
|
29569
|
+
#
|
29570
|
+
# * `SCALE_TO_HEIGHT`: The image takes up the entire height of the
|
29571
|
+
# container. The image aspect ratio is preserved.
|
29572
|
+
#
|
29573
|
+
# * `SCALE_TO_CONTAINER`: The image takes up the entire width and
|
29574
|
+
# height of the container. The image aspect ratio is not preserved.
|
29575
|
+
#
|
29576
|
+
# * `SCALE_NONE`: The image is displayed in its original size and is
|
29577
|
+
# not scaled to the container.
|
29578
|
+
# @return [String]
|
29579
|
+
#
|
29580
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SheetImageScalingConfiguration AWS API Documentation
|
29581
|
+
#
|
29582
|
+
class SheetImageScalingConfiguration < Struct.new(
|
29583
|
+
:scaling_type)
|
29584
|
+
SENSITIVE = []
|
29585
|
+
include Aws::Structure
|
29586
|
+
end
|
29587
|
+
|
29588
|
+
# The source of the image.
|
29589
|
+
#
|
29590
|
+
# @!attribute [rw] sheet_image_static_file_source
|
29591
|
+
# The source of the static file that contains the image.
|
29592
|
+
# @return [Types::SheetImageStaticFileSource]
|
29593
|
+
#
|
29594
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SheetImageSource AWS API Documentation
|
29595
|
+
#
|
29596
|
+
class SheetImageSource < Struct.new(
|
29597
|
+
:sheet_image_static_file_source)
|
29598
|
+
SENSITIVE = []
|
29599
|
+
include Aws::Structure
|
29600
|
+
end
|
29601
|
+
|
29602
|
+
# The source of the static file that contains the image.
|
29603
|
+
#
|
29604
|
+
# @!attribute [rw] static_file_id
|
29605
|
+
# The ID of the static file that contains the image.
|
29606
|
+
# @return [String]
|
29607
|
+
#
|
29608
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SheetImageStaticFileSource AWS API Documentation
|
29609
|
+
#
|
29610
|
+
class SheetImageStaticFileSource < Struct.new(
|
29611
|
+
:static_file_id)
|
29612
|
+
SENSITIVE = []
|
29613
|
+
include Aws::Structure
|
29614
|
+
end
|
29615
|
+
|
29616
|
+
# The tooltip configuration for a sheet image.
|
29617
|
+
#
|
29618
|
+
# @!attribute [rw] tooltip_text
|
29619
|
+
# The text that appears in the tooltip.
|
29620
|
+
# @return [Types::SheetImageTooltipText]
|
29621
|
+
#
|
29622
|
+
# @!attribute [rw] visibility
|
29623
|
+
# The visibility of the tooltip.
|
29624
|
+
# @return [String]
|
29625
|
+
#
|
29626
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SheetImageTooltipConfiguration AWS API Documentation
|
29627
|
+
#
|
29628
|
+
class SheetImageTooltipConfiguration < Struct.new(
|
29629
|
+
:tooltip_text,
|
29630
|
+
:visibility)
|
29631
|
+
SENSITIVE = []
|
29632
|
+
include Aws::Structure
|
29633
|
+
end
|
29634
|
+
|
29635
|
+
# The text that appears in the sheet image tooltip.
|
29636
|
+
#
|
29637
|
+
# @!attribute [rw] plain_text
|
29638
|
+
# The plain text format.
|
29639
|
+
# @return [String]
|
29640
|
+
#
|
29641
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SheetImageTooltipText AWS API Documentation
|
29642
|
+
#
|
29643
|
+
class SheetImageTooltipText < Struct.new(
|
29644
|
+
:plain_text)
|
29645
|
+
SENSITIVE = []
|
29646
|
+
include Aws::Structure
|
29647
|
+
end
|
29648
|
+
|
28267
29649
|
# The sheet layout maximization options of a dashbaord.
|
28268
29650
|
#
|
28269
29651
|
# @!attribute [rw] availability_status
|
@@ -28950,6 +30332,25 @@ module Aws::QuickSight
|
|
28950
30332
|
include Aws::Structure
|
28951
30333
|
end
|
28952
30334
|
|
30335
|
+
# A static file that contains the geospatial data.
|
30336
|
+
#
|
30337
|
+
# @!attribute [rw] static_file_id
|
30338
|
+
# The ID of the spatial static file.
|
30339
|
+
# @return [String]
|
30340
|
+
#
|
30341
|
+
# @!attribute [rw] source
|
30342
|
+
# The source of the spatial static file.
|
30343
|
+
# @return [Types::StaticFileSource]
|
30344
|
+
#
|
30345
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SpatialStaticFile AWS API Documentation
|
30346
|
+
#
|
30347
|
+
class SpatialStaticFile < Struct.new(
|
30348
|
+
:static_file_id,
|
30349
|
+
:source)
|
30350
|
+
SENSITIVE = []
|
30351
|
+
include Aws::Structure
|
30352
|
+
end
|
30353
|
+
|
28953
30354
|
# The parameters for SQL Server.
|
28954
30355
|
#
|
28955
30356
|
# @!attribute [rw] host
|
@@ -29384,6 +30785,85 @@ module Aws::QuickSight
|
|
29384
30785
|
include Aws::Structure
|
29385
30786
|
end
|
29386
30787
|
|
30788
|
+
# The static file.
|
30789
|
+
#
|
30790
|
+
# @!attribute [rw] image_static_file
|
30791
|
+
# The image static file.
|
30792
|
+
# @return [Types::ImageStaticFile]
|
30793
|
+
#
|
30794
|
+
# @!attribute [rw] spatial_static_file
|
30795
|
+
# The spacial static file.
|
30796
|
+
# @return [Types::SpatialStaticFile]
|
30797
|
+
#
|
30798
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/StaticFile AWS API Documentation
|
30799
|
+
#
|
30800
|
+
class StaticFile < Struct.new(
|
30801
|
+
:image_static_file,
|
30802
|
+
:spatial_static_file)
|
30803
|
+
SENSITIVE = []
|
30804
|
+
include Aws::Structure
|
30805
|
+
end
|
30806
|
+
|
30807
|
+
# The structure that contains the Amazon S3 location to download the
|
30808
|
+
# static file from.
|
30809
|
+
#
|
30810
|
+
# @!attribute [rw] bucket_name
|
30811
|
+
# The name of the Amazon S3 bucket.
|
30812
|
+
# @return [String]
|
30813
|
+
#
|
30814
|
+
# @!attribute [rw] object_key
|
30815
|
+
# The identifier of the static file in the Amazon S3 bucket.
|
30816
|
+
# @return [String]
|
30817
|
+
#
|
30818
|
+
# @!attribute [rw] region
|
30819
|
+
# The Region of the Amazon S3 account that contains the bucket.
|
30820
|
+
# @return [String]
|
30821
|
+
#
|
30822
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/StaticFileS3SourceOptions AWS API Documentation
|
30823
|
+
#
|
30824
|
+
class StaticFileS3SourceOptions < Struct.new(
|
30825
|
+
:bucket_name,
|
30826
|
+
:object_key,
|
30827
|
+
:region)
|
30828
|
+
SENSITIVE = []
|
30829
|
+
include Aws::Structure
|
30830
|
+
end
|
30831
|
+
|
30832
|
+
# The source of the static file.
|
30833
|
+
#
|
30834
|
+
# @!attribute [rw] url_options
|
30835
|
+
# The structure that contains the URL to download the static file
|
30836
|
+
# from.
|
30837
|
+
# @return [Types::StaticFileUrlSourceOptions]
|
30838
|
+
#
|
30839
|
+
# @!attribute [rw] s3_options
|
30840
|
+
# The structure that contains the Amazon S3 location to download the
|
30841
|
+
# static file from.
|
30842
|
+
# @return [Types::StaticFileS3SourceOptions]
|
30843
|
+
#
|
30844
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/StaticFileSource AWS API Documentation
|
30845
|
+
#
|
30846
|
+
class StaticFileSource < Struct.new(
|
30847
|
+
:url_options,
|
30848
|
+
:s3_options)
|
30849
|
+
SENSITIVE = []
|
30850
|
+
include Aws::Structure
|
30851
|
+
end
|
30852
|
+
|
30853
|
+
# The structure that contains the URL to download the static file from.
|
30854
|
+
#
|
30855
|
+
# @!attribute [rw] url
|
30856
|
+
# The URL to download the static file from.
|
30857
|
+
# @return [String]
|
30858
|
+
#
|
30859
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/StaticFileUrlSourceOptions AWS API Documentation
|
30860
|
+
#
|
30861
|
+
class StaticFileUrlSourceOptions < Struct.new(
|
30862
|
+
:url)
|
30863
|
+
SENSITIVE = []
|
30864
|
+
include Aws::Structure
|
30865
|
+
end
|
30866
|
+
|
29387
30867
|
# A string parameter for a dataset.
|
29388
30868
|
#
|
29389
30869
|
# @!attribute [rw] id
|
@@ -30262,6 +31742,10 @@ module Aws::QuickSight
|
|
30262
31742
|
# The list of custom actions that are configured for a visual.
|
30263
31743
|
# @return [Array<Types::VisualCustomAction>]
|
30264
31744
|
#
|
31745
|
+
# @!attribute [rw] visual_content_alt_text
|
31746
|
+
# The alt text for the visual.
|
31747
|
+
# @return [String]
|
31748
|
+
#
|
30265
31749
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TableVisual AWS API Documentation
|
30266
31750
|
#
|
30267
31751
|
class TableVisual < Struct.new(
|
@@ -30270,7 +31754,8 @@ module Aws::QuickSight
|
|
30270
31754
|
:subtitle,
|
30271
31755
|
:chart_configuration,
|
30272
31756
|
:conditional_formatting,
|
30273
|
-
:actions
|
31757
|
+
:actions,
|
31758
|
+
:visual_content_alt_text)
|
30274
31759
|
SENSITIVE = []
|
30275
31760
|
include Aws::Structure
|
30276
31761
|
end
|
@@ -30677,6 +32162,10 @@ module Aws::QuickSight
|
|
30677
32162
|
# A structure that describes the query execution options.
|
30678
32163
|
# @return [Types::QueryExecutionOptions]
|
30679
32164
|
#
|
32165
|
+
# @!attribute [rw] static_files
|
32166
|
+
# The static files for the definition.
|
32167
|
+
# @return [Array<Types::StaticFile>]
|
32168
|
+
#
|
30680
32169
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TemplateVersionDefinition AWS API Documentation
|
30681
32170
|
#
|
30682
32171
|
class TemplateVersionDefinition < Struct.new(
|
@@ -30688,7 +32177,8 @@ module Aws::QuickSight
|
|
30688
32177
|
:column_configurations,
|
30689
32178
|
:analysis_defaults,
|
30690
32179
|
:options,
|
30691
|
-
:query_execution_options
|
32180
|
+
:query_execution_options,
|
32181
|
+
:static_files)
|
30692
32182
|
SENSITIVE = []
|
30693
32183
|
include Aws::Structure
|
30694
32184
|
end
|
@@ -32589,6 +34079,30 @@ module Aws::QuickSight
|
|
32589
34079
|
include Aws::Structure
|
32590
34080
|
end
|
32591
34081
|
|
34082
|
+
# The filter that is used to search for a topic.
|
34083
|
+
#
|
34084
|
+
# @!attribute [rw] operator
|
34085
|
+
# The operator like equals or like.
|
34086
|
+
# @return [String]
|
34087
|
+
#
|
34088
|
+
# @!attribute [rw] name
|
34089
|
+
# The name of the topic search filter.
|
34090
|
+
# @return [String]
|
34091
|
+
#
|
34092
|
+
# @!attribute [rw] value
|
34093
|
+
# The value of the topic search filter.
|
34094
|
+
# @return [String]
|
34095
|
+
#
|
34096
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TopicSearchFilter AWS API Documentation
|
34097
|
+
#
|
34098
|
+
class TopicSearchFilter < Struct.new(
|
34099
|
+
:operator,
|
34100
|
+
:name,
|
34101
|
+
:value)
|
34102
|
+
SENSITIVE = []
|
34103
|
+
include Aws::Structure
|
34104
|
+
end
|
34105
|
+
|
32592
34106
|
# A structure that represents a singular filter constant, used in
|
32593
34107
|
# filters to specify a single value to match against.
|
32594
34108
|
#
|
@@ -33020,6 +34534,10 @@ module Aws::QuickSight
|
|
33020
34534
|
# The column hierarchy that is used during drill-downs and drill-ups.
|
33021
34535
|
# @return [Array<Types::ColumnHierarchy>]
|
33022
34536
|
#
|
34537
|
+
# @!attribute [rw] visual_content_alt_text
|
34538
|
+
# The alt text for the visual.
|
34539
|
+
# @return [String]
|
34540
|
+
#
|
33023
34541
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TreeMapVisual AWS API Documentation
|
33024
34542
|
#
|
33025
34543
|
class TreeMapVisual < Struct.new(
|
@@ -33028,7 +34546,8 @@ module Aws::QuickSight
|
|
33028
34546
|
:subtitle,
|
33029
34547
|
:chart_configuration,
|
33030
34548
|
:actions,
|
33031
|
-
:column_hierarchies
|
34549
|
+
:column_hierarchies,
|
34550
|
+
:visual_content_alt_text)
|
33032
34551
|
SENSITIVE = []
|
33033
34552
|
include Aws::Structure
|
33034
34553
|
end
|
@@ -34119,6 +35638,47 @@ module Aws::QuickSight
|
|
34119
35638
|
include Aws::Structure
|
34120
35639
|
end
|
34121
35640
|
|
35641
|
+
# @!attribute [rw] aws_account_id
|
35642
|
+
# The ID of the Amazon Web Services account that contains the
|
35643
|
+
# dashboard QA configuration that you want to update.
|
35644
|
+
# @return [String]
|
35645
|
+
#
|
35646
|
+
# @!attribute [rw] dashboards_qa_status
|
35647
|
+
# The status of dashboards QA configuration that you want to update.
|
35648
|
+
# @return [String]
|
35649
|
+
#
|
35650
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateDashboardsQAConfigurationRequest AWS API Documentation
|
35651
|
+
#
|
35652
|
+
class UpdateDashboardsQAConfigurationRequest < Struct.new(
|
35653
|
+
:aws_account_id,
|
35654
|
+
:dashboards_qa_status)
|
35655
|
+
SENSITIVE = []
|
35656
|
+
include Aws::Structure
|
35657
|
+
end
|
35658
|
+
|
35659
|
+
# @!attribute [rw] dashboards_qa_status
|
35660
|
+
# A value that indicates whether the dashboard QA configuration is
|
35661
|
+
# enabled or not.
|
35662
|
+
# @return [String]
|
35663
|
+
#
|
35664
|
+
# @!attribute [rw] request_id
|
35665
|
+
# The Amazon Web Services request ID for this operation.
|
35666
|
+
# @return [String]
|
35667
|
+
#
|
35668
|
+
# @!attribute [rw] status
|
35669
|
+
# The HTTP status of the request.
|
35670
|
+
# @return [Integer]
|
35671
|
+
#
|
35672
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateDashboardsQAConfigurationResponse AWS API Documentation
|
35673
|
+
#
|
35674
|
+
class UpdateDashboardsQAConfigurationResponse < Struct.new(
|
35675
|
+
:dashboards_qa_status,
|
35676
|
+
:request_id,
|
35677
|
+
:status)
|
35678
|
+
SENSITIVE = []
|
35679
|
+
include Aws::Structure
|
35680
|
+
end
|
35681
|
+
|
34122
35682
|
# @!attribute [rw] aws_account_id
|
34123
35683
|
# The Amazon Web Services account ID.
|
34124
35684
|
# @return [String]
|
@@ -36384,6 +37944,10 @@ module Aws::QuickSight
|
|
36384
37944
|
# [1]: https://docs.aws.amazon.com/quicksight/latest/user/filled-maps.html
|
36385
37945
|
# @return [Types::FilledMapVisual]
|
36386
37946
|
#
|
37947
|
+
# @!attribute [rw] layer_map_visual
|
37948
|
+
# The properties for a layer map visual
|
37949
|
+
# @return [Types::LayerMapVisual]
|
37950
|
+
#
|
36387
37951
|
# @!attribute [rw] funnel_chart_visual
|
36388
37952
|
# A funnel chart.
|
36389
37953
|
#
|
@@ -36509,6 +38073,10 @@ module Aws::QuickSight
|
|
36509
38073
|
# [1]: https://docs.aws.amazon.com/quicksight/latest/user/radar-chart.html
|
36510
38074
|
# @return [Types::RadarChartVisual]
|
36511
38075
|
#
|
38076
|
+
# @!attribute [rw] plugin_visual
|
38077
|
+
# The custom plugin visual type.
|
38078
|
+
# @return [Types::PluginVisual]
|
38079
|
+
#
|
36512
38080
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/Visual AWS API Documentation
|
36513
38081
|
#
|
36514
38082
|
class Visual < Struct.new(
|
@@ -36523,6 +38091,7 @@ module Aws::QuickSight
|
|
36523
38091
|
:tree_map_visual,
|
36524
38092
|
:geospatial_map_visual,
|
36525
38093
|
:filled_map_visual,
|
38094
|
+
:layer_map_visual,
|
36526
38095
|
:funnel_chart_visual,
|
36527
38096
|
:scatter_plot_visual,
|
36528
38097
|
:combo_chart_visual,
|
@@ -36534,7 +38103,8 @@ module Aws::QuickSight
|
|
36534
38103
|
:sankey_diagram_visual,
|
36535
38104
|
:custom_content_visual,
|
36536
38105
|
:empty_visual,
|
36537
|
-
:radar_chart_visual
|
38106
|
+
:radar_chart_visual,
|
38107
|
+
:plugin_visual)
|
36538
38108
|
SENSITIVE = []
|
36539
38109
|
include Aws::Structure
|
36540
38110
|
end
|
@@ -36969,6 +38539,10 @@ module Aws::QuickSight
|
|
36969
38539
|
# The column hierarchy that is used during drill-downs and drill-ups.
|
36970
38540
|
# @return [Array<Types::ColumnHierarchy>]
|
36971
38541
|
#
|
38542
|
+
# @!attribute [rw] visual_content_alt_text
|
38543
|
+
# The alt text for the visual.
|
38544
|
+
# @return [String]
|
38545
|
+
#
|
36972
38546
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/WaterfallVisual AWS API Documentation
|
36973
38547
|
#
|
36974
38548
|
class WaterfallVisual < Struct.new(
|
@@ -36977,7 +38551,8 @@ module Aws::QuickSight
|
|
36977
38551
|
:subtitle,
|
36978
38552
|
:chart_configuration,
|
36979
38553
|
:actions,
|
36980
|
-
:column_hierarchies
|
38554
|
+
:column_hierarchies,
|
38555
|
+
:visual_content_alt_text)
|
36981
38556
|
SENSITIVE = []
|
36982
38557
|
include Aws::Structure
|
36983
38558
|
end
|
@@ -37199,6 +38774,10 @@ module Aws::QuickSight
|
|
37199
38774
|
# The column hierarchy that is used during drill-downs and drill-ups.
|
37200
38775
|
# @return [Array<Types::ColumnHierarchy>]
|
37201
38776
|
#
|
38777
|
+
# @!attribute [rw] visual_content_alt_text
|
38778
|
+
# The alt text for the visual.
|
38779
|
+
# @return [String]
|
38780
|
+
#
|
37202
38781
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/WordCloudVisual AWS API Documentation
|
37203
38782
|
#
|
37204
38783
|
class WordCloudVisual < Struct.new(
|
@@ -37207,7 +38786,8 @@ module Aws::QuickSight
|
|
37207
38786
|
:subtitle,
|
37208
38787
|
:chart_configuration,
|
37209
38788
|
:actions,
|
37210
|
-
:column_hierarchies
|
38789
|
+
:column_hierarchies,
|
38790
|
+
:visual_content_alt_text)
|
37211
38791
|
SENSITIVE = []
|
37212
38792
|
include Aws::Structure
|
37213
38793
|
end
|